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 / nested_complit / nested_complit.go.in
1 package nested_complit
2
3 type ncFoo struct {} //@item(structNCFoo, "ncFoo", "struct{...}", "struct")
4
5 type ncBar struct { //@item(structNCBar, "ncBar", "struct{...}", "struct")
6         baz []ncFoo
7 }
8
9 func _() {
10         []ncFoo{} //@item(litNCFoo, "[]ncFoo{}", "", "var")
11         _ := ncBar{
12                 baz: [] //@complete(" //", structNCFoo, structNCBar)
13         }
14 }