You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gofmt applied to the following program doesn't reproduce the semicolons and thus makes
the
program invalid:
package main
func main() {
switch 0 {
case 0:
L0:;
case 1:
L1:;
default:
}
}