2021-01-20 23:07:43 +01:00

12 lines
230 B
Go

//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
}
}