golangci-lint/test/testdata/varnamelen.go
2022-07-15 15:32:10 +02:00

18 lines
221 B
Go

//golangcitest:args -Evarnamelen
package testdata
import "math"
func varnamelen() {
x := math.MinInt8 // ERROR "variable name 'x' is too short for the scope of its usage"
x++
x++
x++
x++
x++
x++
x++
x++
x++
}