We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 }