summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala
blob: c9b210f35ab60109522b26e9136d2f48689cec80 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.mirror._

object Test extends App {
  def fooTypeTag[T: GroundTypeTag] = {
    println(implicitly[TypeTag[T]])
    println(implicitly[TypeTag[List[T]]])
  }
  fooTypeTag[Int]
}