Open
Description
The Go spec disallows duplicate constants in map literal keys, and allows compilers to reject duplicate constants in switch cases.
However, the Go spec does not formally allow interface-typed constants, and doesn't mention how to handle constants that are implicitly or explicitly converted to interface type. The existing compilers handle these situations in differing ways:
package p
// #1
var _ = map[interface{}]int{
0: 0,
0: 0,
}
// #2
var _ = map[interface{}]int{
interface{}(0): 0,
interface{}(0): 0,
}
func _() {
// #3
switch interface{}(0) {
case 0:
case 0:
}
// #4
switch interface{}(0) {
case interface{}(0):
case interface{}(0):
}
}
cmd/compile rejects 1, 2, and 3.
go/types rejects 1 and 3.
gccgo (8.0) rejects none.