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

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