We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 }
The text was updated successfully, but these errors were encountered:
Should probably be fixed but is not urgent. This bug has been around for years.
Sorry, something went wrong.
a0d2e96
No branches or pull requests
go fmt changed the following correct Go program:
into the following incorrect Go program:
The text was updated successfully, but these errors were encountered: