.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.1-0.20210319172145-bda8f5cee399 / 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 }