aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-reify-typetag-notypeparams/Test.scala
blob: 1eff6e93fe2fffcf732d24f8df2f7223083963af (plain) (blame)
1
2
3
4
5
6
import scala.reflect.runtime.universe._

object Test extends dotty.runtime.LegacyApp {
  println(implicitly[TypeTag[Int]])
  println(implicitly[TypeTag[List[Int]]])
}