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

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