aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/macro-reify-abstypetag-typeparams-notags/Test.scala
blob: 19070eec8307d99aea2562c8175403c96dab3121 (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]
}