Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / unused / testdata / src / exported_fields / exported_fields.go
1 package pkg
2
3 type t1 struct {
4         F1 int
5 }
6
7 type T2 struct {
8         F2 int
9 }
10
11 var v struct {
12         T3
13 }
14
15 type T3 struct{}
16
17 func (T3) Foo() {}
18
19 func init() {
20         v.Foo()
21 }
22
23 func init() {
24         _ = t1{}
25 }
26
27 type codeResponse struct {
28         Tree *codeNode `json:"tree"`
29 }
30
31 type codeNode struct {
32 }
33
34 func init() {
35         _ = codeResponse{}
36 }