2012-02-18 14:15:42 -07:00
|
|
|
// run
|
2011-12-06 08:48:17 -07:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2011-12-06 08:48:17 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-18 23:33:41 -07:00
|
|
|
// Test run-time error detection for interface values containing types
|
|
|
|
// that cannot be compared for equality.
|
2011-12-06 08:48:17 -07:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
cmp(1)
|
2011-12-12 20:22:09 -07:00
|
|
|
|
2011-12-06 08:48:17 -07:00
|
|
|
var (
|
|
|
|
m map[int]int
|
2011-12-12 20:22:09 -07:00
|
|
|
s struct{ x []int }
|
2011-12-06 08:48:17 -07:00
|
|
|
f func()
|
|
|
|
)
|
|
|
|
noCmp(m)
|
|
|
|
noCmp(s)
|
|
|
|
noCmp(f)
|
|
|
|
}
|
|
|
|
|
|
|
|
func cmp(x interface{}) bool {
|
|
|
|
return x == x
|
|
|
|
}
|
|
|
|
|
|
|
|
func noCmp(x interface{}) {
|
|
|
|
shouldPanic(func() { cmp(x) })
|
|
|
|
}
|
|
|
|
|
|
|
|
func shouldPanic(f func()) {
|
|
|
|
defer func() {
|
|
|
|
if recover() == nil {
|
|
|
|
panic("function should panic")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
f()
|
|
|
|
}
|