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 / unused-argument / unused-argument.go
1 package main
2
3 type t1 struct{}
4 type t2 struct{}
5
6 func (t1) foo(arg *t2) {}
7
8 func init() {
9         t1{}.foo(nil)
10 }