aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/typetags_multi.scala
blob: 046de29ab5900bbd7827934d5b464681a94ca0c0 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                       
                                             




                                                               
 
import scala.reflect.runtime.universe._

object Test extends dotty.runtime.LegacyApp {
  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]]]]]])
}