8 lines
100 B
Go
8 lines
100 B
Go
package inefassign
|
|
|
|
func _() {
|
|
x := true // want "ineffectual assignment to x"
|
|
x = false
|
|
_ = x
|
|
}
|