summaryrefslogtreecommitdiff
path: root/test/files/run/classof.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-02-05 14:38:06 +0000
committermihaylov <mihaylov@epfl.ch>2007-02-05 14:38:06 +0000
commitfd8dff6dd8148e83d24f3be3f8b22b7f4b253760 (patch)
tree0d3e00aabbca154e09f89dd800c5f37cdd680e14 /test/files/run/classof.scala
parent611f4541686a87ba6d871a95951d476a288816a4 (diff)
downloadscala-fd8dff6dd8148e83d24f3be3f8b22b7f4b253760.tar.gz
scala-fd8dff6dd8148e83d24f3be3f8b22b7f4b253760.tar.bz2
scala-fd8dff6dd8148e83d24f3be3f8b22b7f4b253760.zip
MSIL-firendly test suit
Diffstat (limited to 'test/files/run/classof.scala')
-rw-r--r--test/files/run/classof.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/classof.scala b/test/files/run/classof.scala
index 3b6180396c..3aa049ef68 100644
--- a/test/files/run/classof.scala
+++ b/test/files/run/classof.scala
@@ -3,6 +3,6 @@ class SomeClass
object Test {
def main(args: Array[String]): Unit = {
val cls: Class = classOf[SomeClass]
- Console.println(compat.Platform.getName(cls))
+ Console.println(cls.getName())
}
}