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

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