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

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