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

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