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
type T int
func f() {
type T int
}
Both of these types are printed as "main.T". This is ambiguous and confusing;
the f-local type should have a different name. Not sure what 6g does.