golangci-lint/test/testdata/varnamelen.go

18 lines
220 B
Go
Raw Permalink Normal View History

//golangcitest:args -Evarnamelen
2021-10-28 00:37:13 +02:00
package testdata
import "math"
func varnamelen() {
x := math.MinInt8 // want "variable name 'x' is too short for the scope of its usage"
2021-10-28 00:37:13 +02:00
x++
x++
x++
x++
x++
x++
x++
x++
x++
}