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