summaryrefslogtreecommitdiff
path: root/test/files/run/literals.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/literals.check')
-rw-r--r--test/files/run/literals.check2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/files/run/literals.check b/test/files/run/literals.check
index b2a96ecd3f..030e3350c1 100644
--- a/test/files/run/literals.check
+++ b/test/files/run/literals.check
@@ -4,6 +4,8 @@ test 65.asInstanceOf[char] == 'A' was successful
test "\141\142" == "ab" was successful
test "\0x61\0x62".trim() == "x61\0x62" was successful
+test (65 : Byte) == 'A' was successful
+
test 01 == 1 was successful
test 010 == 8 was successful
test 0X01 == 1 was successful