summaryrefslogtreecommitdiff
path: root/test/files/run/literals.check
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-08-14 13:25:12 +0000
committermichelou <michelou@epfl.ch>2006-08-14 13:25:12 +0000
commit28113d4604f1a403aa7611028ab8fcc217c3449c (patch)
treedff0a63e47408fe0ffa20429d8d98f1d671c448a /test/files/run/literals.check
parenteb9c91332c81ff23bb059aeaa13c4900a3066e79 (diff)
downloadscala-28113d4604f1a403aa7611028ab8fcc217c3449c.tar.gz
scala-28113d4604f1a403aa7611028ab8fcc217c3449c.tar.bz2
scala-28113d4604f1a403aa7611028ab8fcc217c3449c.zip
added contrib #176 to test file run/literals.scala
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