summaryrefslogtreecommitdiff
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
commit38bb503bdb1595572fbb012cca1e531d6c780fb3 (patch)
tree321251a8cd180ad7856af54e8e531850d0735fb0 /test/char_lit.go
parent203878acc122be539a344540573267a7bcde29e0 (diff)
downloadgo-38bb503bdb1595572fbb012cca1e531d6c780fb3.tar.gz
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 de967883b..d45ecf398 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)
}
}