summaryrefslogtreecommitdiff
path: root/test/files/run/typetags_multi.scala
blob: a989662160df5c50ae7dc54a3aac7d6d7cede528 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.runtime.universe._

object Test extends App {
  println(typeOf[Int])
  println(typeOf[Array[Int]])
  println(typeOf[Array[Array[Int]]])
  println(typeOf[Array[Array[Array[Int]]]])
  println(typeOf[Array[Array[Array[Array[Int]]]]])
}