summaryrefslogtreecommitdiff
path: root/test/files/run/t9915/C_1.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9915/C_1.java')
-rw-r--r--test/files/run/t9915/C_1.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/run/t9915/C_1.java b/test/files/run/t9915/C_1.java
new file mode 100644
index 0000000000..cbd52606be
--- /dev/null
+++ b/test/files/run/t9915/C_1.java
@@ -0,0 +1,18 @@
+
+public class C_1 {
+ public static final String NULLED = "X\000ABC";
+ public static final String SUPPED = "𐒈𐒝𐒑𐒛𐒐𐒘𐒕𐒖";
+
+ public String nulled() {
+ return C_1.NULLED;
+ }
+ public String supped() {
+ return C_1.SUPPED;
+ }
+ public int nulledSize() {
+ return C_1.NULLED.length();
+ }
+ public int suppedSize() {
+ return C_1.SUPPED.length();
+ }
+}