aboutsummaryrefslogtreecommitdiff
path: root/test/string_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/string_lit.go
parentec9f2b0cd46300b9da3a82aa3604c98fce017baa (diff)
downloadgo-360962420c484427bbc16e1f8699ee5cccc4f012.tar.gz
go-360962420c484427bbc16e1f8699ee5cccc4f012.zip
casify, cleanup sys
R=r OCL=22978 CL=22984
Diffstat (limited to 'test/string_lit.go')
-rw-r--r--test/string_lit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/string_lit.go b/test/string_lit.go
index 2196214845..5842eaa290 100644
--- a/test/string_lit.go
+++ b/test/string_lit.go
@@ -43,7 +43,7 @@ func main() {
"本"
"\a\b\f\n\r\t\v\\\""
"\000\123\x00\xca\xFE\u0123\ubabe\U0000babe"
-
+
``
` `
`'"`
@@ -84,5 +84,5 @@ func main() {
r = 0x10ffff + 1;
s = string(r);
assert(s, "\xef\xbf\xbd", "too-large rune");
- sys.exit(ecode);
+ sys.Exit(ecode);
}