aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/macro-reify-typetag-hktypeparams-notags/Test.scala
blob: 09652721cdc12b5a53c6002b0d36e6d4c196c0d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.runtime.universe._

object Test extends App {
  def fooNoTypeTagHK[C[_], T] = {
    println(implicitly[TypeTag[C[T]]])
    println(implicitly[TypeTag[List[C[T]]]])
  }
  fooNoTypeTagHK[List, Int]
}