summaryrefslogblamecommitdiff
path: root/test/files/run/typetags_multi.scala
blob: b30aac80a6fb58536100e5c5d01b6356f37f0ab5 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                       
                         




                                                               
 
import scala.reflect.runtime.universe._

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