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_nested.go
1 package fillstruct
2
3 type StructB struct {
4         StructC
5 }
6
7 type StructC struct {
8         unexportedInt int
9 }
10
11 func nested() {
12         c := StructB{
13                 StructC: StructC{}, //@suggestedfix("}", "refactor.rewrite")
14         }
15 }