summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-invalidsig-tparams-notparams-b/Impls_1.scala
blob: db79ddbcd8abf5777ba17a685f9999160b0daed0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import scala.reflect.makro.{Context => Ctx}

object Impls {
  def foo[T: c.TypeTag, U: c.TypeTag, V](c: Ctx)(implicit V: c.TypeTag[V]): c.Expr[Unit] = {
    println(implicitly[c.TypeTag[T]])
    println(implicitly[c.TypeTag[U]])
    println(V)
    c.literalUnit
  }
}