github.com/golangci/go-tools@v0.0.0-20190318060251-af6baa5dc196/unused/testdata/src/unused-argument/unused-argument.go (about)

     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  }