fix build: invalid character literals

R=r
CC=golang-dev
https://golang.org/cl/1631041
diff --git a/test/char_lit.go b/test/char_lit.go
index 689a54a..e4f3f83 100644
--- a/test/char_lit.go
+++ b/test/char_lit.go
@@ -30,15 +30,15 @@
 		'\xFE' +
 		'\u0123' +
 		'\ubabe' +
-		'\U0123ABCD' +
-		'\Ucafebabe'
+		'\U0010FFFF' +
+		'\U000ebabe'
 		;
-	if '\Ucafebabe' != 0xcafebabe {
-		print("cafebabe wrong\n");
+	if '\U000ebabe' != 0x000ebabe {
+		print("ebabe wrong\n");
 		os.Exit(1)
 	}
-	if i != 0xcc238de1 {
-		print("number is ", i, " should be ", 0xcc238de1, "\n");
+	if i != 0x20e213 {
+		print("number is ", i, " should be ", 0x20e213, "\n");
 		os.Exit(1)
 		}
 }