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

     1  package pkg
     2  
     3  type t struct {
     4  	f int
     5  }
     6  
     7  func fn(v *t) {
     8  	println(v.f)
     9  }
    10  
    11  func init() {
    12  	var v t
    13  	fn(&v)
    14  }