summaryrefslogtreecommitdiff
path: root/test/files/run/classof.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-01-11 08:45:47 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-01-11 08:45:47 +0000
commit7ceeb1e609598bd89df1c462855625ed266cd154 (patch)
treef0c355814001b0f8aa55ed5a71d32dbdc4580e2a /test/files/run/classof.scala
parent4c05b14a7162b8c4d4088ec293708eb74f783213 (diff)
downloadscala-7ceeb1e609598bd89df1c462855625ed266cd154.tar.gz
scala-7ceeb1e609598bd89df1c462855625ed266cd154.tar.bz2
scala-7ceeb1e609598bd89df1c462855625ed266cd154.zip
Had to create a test/pending/jvm5 directory.
Moved tests that are failing, but no present fixes into pending.
Diffstat (limited to 'test/files/run/classof.scala')
-rw-r--r--test/files/run/classof.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/run/classof.scala b/test/files/run/classof.scala
deleted file mode 100644
index b547e5c8c3..0000000000
--- a/test/files/run/classof.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-class SomeClass
-
-object Test {
- def main(args: Array[String]): Unit = {
- val cls: Class[SomeClass] = classOf[SomeClass]
- Console.println(cls.getName())
- }
-}