Update .bashrc
[dotfiles/.git] / 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 }