.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / unused / testdata / src / methods / methods.go
1 package pkg
2
3 type t1 struct{} // used
4 type t2 struct { // used
5         t3 // used
6 }
7 type t3 struct{} // used
8
9 func (t1) Foo() {} // used
10 func (t3) Foo() {} // used
11 func (t3) foo() {} // unused
12
13 func init() { // used
14         _ = t1{}
15         _ = t2{}
16 }