summaryrefslogtreecommitdiff
path: root/test/int_lit.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-16 14:58:14 -0800
committerRuss Cox <rsc@golang.org>2009-01-16 14:58:14 -0800
commit38bb503bdb1595572fbb012cca1e531d6c780fb3 (patch)
tree321251a8cd180ad7856af54e8e531850d0735fb0 /test/int_lit.go
parent203878acc122be539a344540573267a7bcde29e0 (diff)
downloadgo-38bb503bdb1595572fbb012cca1e531d6c780fb3.tar.gz
casify, cleanup sys
R=r OCL=22978 CL=22984
Diffstat (limited to 'test/int_lit.go')
-rw-r--r--test/int_lit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/int_lit.go b/test/int_lit.go
index f7311dd25..4121070f3 100644
--- a/test/int_lit.go
+++ b/test/int_lit.go
@@ -7,7 +7,7 @@
package main
func main() {
- s :=
+ s :=
0 +
123 +
0123 +
@@ -18,6 +18,6 @@ func main() {
0X123;
if s != 788 {
print("s is ", s, "; should be 788\n");
- sys.exit(1);
+ sys.Exit(1);
}
}