summaryrefslogtreecommitdiff
path: root/test/files/jvm5/typerep.check
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-03-12 16:07:46 +0000
committermichelou <michelou@epfl.ch>2008-03-12 16:07:46 +0000
commita0eb2af8114da819faa26d7ea2880790398d5ada (patch)
treeeeb48d41dbb8c089237eac0b0ccb61d0173b4693 /test/files/jvm5/typerep.check
parent328363d628a1e2443eb13c524fbb5c5d8a11e6ef (diff)
downloadscala-a0eb2af8114da819faa26d7ea2880790398d5ada.tar.gz
scala-a0eb2af8114da819faa26d7ea2880790398d5ada.tar.bz2
scala-a0eb2af8114da819faa26d7ea2880790398d5ada.zip
moved typerep test to jvm5
Diffstat (limited to 'test/files/jvm5/typerep.check')
-rwxr-xr-xtest/files/jvm5/typerep.check49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/files/jvm5/typerep.check b/test/files/jvm5/typerep.check
new file mode 100755
index 0000000000..ca93180946
--- /dev/null
+++ b/test/files/jvm5/typerep.check
@@ -0,0 +1,49 @@
+Boolean
+Boolean
+true
+Byte
+Char
+Int
+Long
+Float
+Double
+String
+Unit
+Class[Int]
+
+Some[Int]
+Some[Int]
+Some[Some[Int]]
+Some[List[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
+