summaryrefslogtreecommitdiff
path: root/test/ken/ptrvar.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/ken/ptrvar.go')
-rw-r--r--test/ken/ptrvar.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ken/ptrvar.go b/test/ken/ptrvar.go
index c2e2d611d..0e3452f0a 100644
--- a/test/ken/ptrvar.go
+++ b/test/ken/ptrvar.go
@@ -34,8 +34,8 @@ main()
s2.d.c = 23;
s2.d.d = 20;
- if(s2.d.c != 23) { panic 1; }
- if(g2.d.c != 23) { panic 2; }
+ if(s2.d.c != 23) { panic(1); }
+ if(g2.d.c != 23) { panic(2); }
x = s1.a +
s1.b +
@@ -50,5 +50,5 @@ main()
s2.d.c +
s2.d.d;
- if(x != 121) { panic x; }
+ if(x != 121) { panic(x); }
}