summaryrefslogtreecommitdiff
path: root/test/files/run/classof.scala
diff options
context:
space:
mode:
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())
}
}