2012-02-16 21:49:30 -07:00
|
|
|
// errorcheck
|
2009-09-01 19:04:49 -06:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// 6g used to compile these as two different
|
|
|
|
// hash codes so it missed the duplication
|
|
|
|
// and worse, compiled the wrong code
|
|
|
|
// for one of them.
|
|
|
|
var x interface{};
|
2011-11-04 10:03:50 -06:00
|
|
|
switch x.(type) {
|
2009-09-01 19:04:49 -06:00
|
|
|
case func(int):
|
|
|
|
case func(f int): // ERROR "duplicate"
|
|
|
|
}
|
|
|
|
}
|