summaryrefslogtreecommitdiff
path: root/test/files/jvm/typerep.check
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2008-06-11 11:34:30 +0000
committerIulian Dragos <jaguarul@gmail.com>2008-06-11 11:34:30 +0000
commitd89ea1c9a5de945ca8f108bee8f174d6dcc2f7e8 (patch)
tree3e4535430d4096524f8bb1e879a8b0f470f8d681 /test/files/jvm/typerep.check
parent98596ff0aa4c97dca9264c7c13dd9c889b749ccf (diff)
downloadscala-d89ea1c9a5de945ca8f108bee8f174d6dcc2f7e8.tar.gz
scala-d89ea1c9a5de945ca8f108bee8f174d6dcc2f7e8.tar.bz2
scala-d89ea1c9a5de945ca8f108bee8f174d6dcc2f7e8.zip
Moved pending tests that succeed to their place...
Moved pending tests that succeed to their place in the 'files' directory.
Diffstat (limited to 'test/files/jvm/typerep.check')
-rw-r--r--test/files/jvm/typerep.check47
1 files changed, 47 insertions, 0 deletions
diff --git a/test/files/jvm/typerep.check b/test/files/jvm/typerep.check
new file mode 100644
index 0000000000..ff98348304
--- /dev/null
+++ b/test/files/jvm/typerep.check
@@ -0,0 +1,47 @@
+Boolean
+Boolean
+true
+Byte
+Char
+Int
+Long
+Float
+Double
+String
+Unit
+
+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
+