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.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/classof.scala b/test/files/run/classof.scala
index 10c07d2e51..257829e976 100644
--- a/test/files/run/classof.scala
+++ b/test/files/run/classof.scala
@@ -13,19 +13,19 @@ object Test {
println(classOf[Long])
println(classOf[Float])
println(classOf[Double])
-
+
println("Class types")
println(classOf[SomeClass])
println(classOf[List[Array[Float]]])
println(classOf[(String, Map[Int, String])])
println("Arrays:")
- println(classOf[Array[Unit]])
+ println(classOf[Array[Unit]])
println(classOf[Array[Int]])
println(classOf[Array[Double]])
println(classOf[Array[List[String]]])
- println("Functions: ")
+ println("Functions:")
println(classOf[(Int, Int) => Unit])
println(classOf[Int => Boolean])
}