summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-typetag-notypeparams/Test.scala
blob: be9feac4caf158cd67a40c4a52fa61a6d6b3f400 (plain) (blame)
1
2
3
4
5
6
import scala.reflect.runtime.universe._

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