.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 / rank / struct / struct_rank.go
1 package struct_rank
2
3 type foo struct {
4         c int //@item(c_rank, "c", "int", "field")
5         b int //@item(b_rank, "b", "int", "field")
6         a int //@item(a_rank, "a", "int", "field")
7 }
8
9 func f() {
10         foo := foo{} //@rank("}", c_rank, b_rank, a_rank)
11 }