.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / unused / testdata / src / unused-argument / unused-argument.go
1 package main
2
3 type t1 struct{} // used
4 type t2 struct{} // used
5
6 func (t1) foo(arg *t2) {} // used
7
8 func init() { // used
9         t1{}.foo(nil)
10 }