github.com/golangci/go-tools@v0.0.0-20190318060251-af6baa5dc196/unused/testdata/src/exported_fields_main/exported_fields_main.go (about) 1 package main 2 3 type t1 struct { 4 F1 int 5 } 6 7 type T2 struct { 8 F2 int 9 } 10 11 func init() { 12 _ = t1{} 13 _ = T2{} 14 }