diff options
Diffstat (limited to 'test/fixedbugs/bug244.go')
-rw-r--r-- | test/fixedbugs/bug244.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixedbugs/bug244.go b/test/fixedbugs/bug244.go index 26db78777..915c3fcd0 100644 --- a/test/fixedbugs/bug244.go +++ b/test/fixedbugs/bug244.go @@ -25,6 +25,7 @@ var v, ok = m[g()] func main() { if x != 1 || y != 2 || z != 3 || nf != 1 || v != 0 || ok != false || ng != 1 { - panic("x=", x, " y=", y, " z=", z, " nf=", nf, " v=", v, " ok=", ok, " ng=", ng) + println("x=", x, " y=", y, " z=", z, " nf=", nf, " v=", v, " ok=", ok, " ng=", ng) + panic("fail") } } |