2022-07-15 15:32:10 +02:00

12 lines
242 B
Go

//golangcitest:args -Eifshort
package testdata
func DontUseShortSyntaxWhenPossible() {
getValue := func() interface{} { return nil }
v := getValue() // ERROR "variable 'v' is only used in the if-statement .*"
if v != nil {
return
}
}