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