summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-reify-groundtypetag-usetypetag/Test.scala
blob: 52b5c1078dc7e5f1b107f35d7bdeb9037c98fe44 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.runtime.universe._

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