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
This compiles:
package main
func main() {
var _ = 5
}
This does not:
package main
func main() {
_ := 5
}
I can't see a reason to allow the first but not the second. I vote for disallowing the
first.