diff options
Diffstat (limited to 'test/fixedbugs/bug246.go')
-rw-r--r-- | test/fixedbugs/bug246.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/fixedbugs/bug246.go b/test/fixedbugs/bug246.go index 1c4dc0d53..12041eb1d 100644 --- a/test/fixedbugs/bug246.go +++ b/test/fixedbugs/bug246.go @@ -15,8 +15,9 @@ func main() { // fails x2 := (*int)(unsafe.Pointer(uintptr(0x234))) - + if x1 != x2 { - panicln("mismatch", x1, x2) + println("mismatch", x1, x2) + panic("fail") } } |