diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
commit | 3e45412327a2654a77944249962b3652e6142299 (patch) | |
tree | bc3bf69452afa055423cbe0c5cfa8ca357df6ccf /test/char_lit.go | |
parent | c533680039762cacbc37db8dc7eed074c3e497be (diff) | |
download | golang-upstream/2011.01.12.tar.gz |
Imported Upstream version 2011.01.12upstream/2011.01.12
Diffstat (limited to 'test/char_lit.go')
-rw-r--r-- | test/char_lit.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/char_lit.go b/test/char_lit.go index e4f3f8323..99be77a57 100644 --- a/test/char_lit.go +++ b/test/char_lit.go @@ -32,13 +32,12 @@ func main() { '\ubabe' + '\U0010FFFF' + '\U000ebabe' - ; if '\U000ebabe' != 0x000ebabe { - print("ebabe wrong\n"); + print("ebabe wrong\n") os.Exit(1) } if i != 0x20e213 { - print("number is ", i, " should be ", 0x20e213, "\n"); + print("number is ", i, " should be ", 0x20e213, "\n") os.Exit(1) - } + } } |