golangci-lint/pkg/golinters/testdata/structcheck.go
2018-05-06 20:28:59 +03:00

5 lines
124 B
Go

package testdata
type t struct { // ERROR "`t` is unused"
unusedField int // ERROR "`testdata.t.unusedField` is unused"
}