aboutsummaryrefslogtreecommitdiff
path: root/test/char_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/char_lit.go
parentec9f2b0cd46300b9da3a82aa3604c98fce017baa (diff)
downloadgo-360962420c484427bbc16e1f8699ee5cccc4f012.tar.gz
go-360962420c484427bbc16e1f8699ee5cccc4f012.zip
casify, cleanup sys
R=r OCL=22978 CL=22984
Diffstat (limited to 'test/char_lit.go')
-rw-r--r--test/char_lit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/char_lit.go b/test/char_lit.go
index de967883b0..d45ecf3980 100644
--- a/test/char_lit.go
+++ b/test/char_lit.go
@@ -33,10 +33,10 @@ func main() {
;
if '\Ucafebabe' != 0xcafebabe {
print("cafebabe wrong\n");
- sys.exit(1)
+ sys.Exit(1)
}
if i != 0xcc238de1 {
print("number is ", i, " should be ", 0xcc238de1, "\n");
- sys.exit(1)
+ sys.Exit(1)
}
}