summaryrefslogblamecommitdiff
path: root/test/files/run/macro-reify-abstypetag-typeparams-notags/Test.scala
blob: 4ba2231d9a556788ab803b31c9165635522ed86d (plain) (tree)
1
2
3
4
5
6
7
8
9
                                       


                         

                                             


                   
import scala.reflect.runtime.universe._

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