Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / fillstruct / fill_struct_anon.go
1 package fillstruct
2
3 type StructAnon struct {
4         a struct{}
5         b map[string]interface{}
6         c map[string]struct {
7                 d int
8                 e bool
9         }
10 }
11
12 func fill() {
13         _ := StructAnon{} //@suggestedfix("}", "refactor.rewrite")
14 }