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

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