mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-14 05:34:39 -04:00
13 lines
171 B
Go
13 lines
171 B
Go
//golangcitest:args -Eineffassign
|
|
package testdata
|
|
|
|
import "math"
|
|
|
|
func _() {
|
|
x := math.MinInt8
|
|
for {
|
|
_ = x
|
|
x = 0 // want "ineffectual assignment to x"
|
|
x = 0
|
|
}
|
|
}
|