github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/ineffassign.go (about)

     1  //golangcitest:args -Eineffassign
     2  package testdata
     3  
     4  import "math"
     5  
     6  func _() {
     7  	x := math.MinInt8
     8  	for {
     9  		_ = x
    10  		x = 0 // want "ineffectual assignment to x"
    11  		x = 0
    12  	}
    13  }