-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
type myInt int
type myStruct struct {
aaa map[myInt]myInt // "map" scoped as "keyword.map.go"
}
var m1 map[myInt]myInt // "map" scoped as "entity.name.type.go"
var m2, m3 map[myInt]myInt // "map" scoped as "keyword.map.go"
func foo(arg map[myInt]myInt) { // "map" scoped as "keyword.map.go"
}
Also, every "myInt" except the first one is simply scoped as "source.go".
Metadata
Metadata
Assignees
Labels
No labels