We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
go fmt changed the following correct Go program:
package main func main() { x := 0 /**/; y := 1 _, _ = x, y }
into the following incorrect Go program:
package main func main() { x := 0 /**/ y := 1 _, _ = x, y }
Activity