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

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