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
package main
func main() {
i := 0
go func() {
i = 1
}()
}
This compiles without errors.
I would expect this to give an "i declared and not used" error.