aboutsummaryrefslogtreecommitdiff
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
commit360962420c484427bbc16e1f8699ee5cccc4f012 (patch)
tree321251a8cd180ad7856af54e8e531850d0735fb0 /test/int_lit.go
parentec9f2b0cd46300b9da3a82aa3604c98fce017baa (diff)
downloadgo-360962420c484427bbc16e1f8699ee5cccc4f012.tar.gz
go-360962420c484427bbc16e1f8699ee5cccc4f012.zip
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 f7311dd25d..4121070f34 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);
}
}