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 / types / types.go
1 package types
2
3 type CoolAlias = int //@item(CoolAlias, "CoolAlias", "int", "type")
4
5 type X struct { //@item(X_struct, "X", "struct{...}", "struct")
6         x int
7 }
8
9 type Y struct { //@item(Y_struct, "Y", "struct{...}", "struct")
10         y int
11 }
12
13 type Bob interface { //@item(Bob_interface, "Bob", "interface{...}", "interface")
14         Bobby()
15 }
16
17 func (*X) Bobby() {}
18 func (*Y) Bobby() {}