summaryrefslogtreecommitdiff
path: root/test/files/jvm/typerep.check
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-11-13 18:32:06 +0000
committermichelou <michelou@epfl.ch>2007-11-13 18:32:06 +0000
commitfbd2eae173143b6b9a45283b09377cc12af31159 (patch)
treec1679f3bbb07c3239bc38e0295727ddc19513d03 /test/files/jvm/typerep.check
parent96f925078fdcf764e84f4691e6589004f09ca709 (diff)
downloadscala-fbd2eae173143b6b9a45283b09377cc12af31159.tar.gz
scala-fbd2eae173143b6b9a45283b09377cc12af31159.tar.bz2
scala-fbd2eae173143b6b9a45283b09377cc12af31159.zip
runtime tests of type representation
Diffstat (limited to 'test/files/jvm/typerep.check')
-rw-r--r--test/files/jvm/typerep.check48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/files/jvm/typerep.check b/test/files/jvm/typerep.check
new file mode 100644
index 0000000000..410654627f
--- /dev/null
+++ b/test/files/jvm/typerep.check
@@ -0,0 +1,48 @@
+Boolean
+Boolean
+true
+Byte
+Char
+Int
+Long
+Float
+Double
+String
+Unit
+Class
+
+Some[Int]
+Some[Int]
+Some[Some[Int]]
+None
+None
+
+List[Int]
+List[Int]
+List[List[Int]]
+Nil
+List[Any]
+
+Array[Int]
+Array[Array[Int]]
+Array[Int]
+Array[Int]
+Array[Int]
+Array[Int]
+
+Tuple2[Int, String]
+Tuple3[Char, Char, String]
+Tuple2[Tuple2[Int, String], Tuple2[Int, String]]
+Tuple2[Tuple2[Some[Char], Int], Tuple2[Some[Char], Int]]
+
+Function1[Int, Int]
+Int
+Function1[Int, Int]
+Int
+Function1[Int, Function1[Int, Int]]
+Function1[Int, Int]
+Int
+Function3[Boolean, List[Char], Int, Int]
+Function2[Function1[Int, Int], Int, Int]
+Int
+