summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-invalidsig-tparams-notparams-c/Impls_1.scala
blob: 41facc881e018d0dfb1ca4ecad50fc05e79f3431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import scala.reflect.runtime.universe._
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] = {
    import c.universe._
    println(implicitly[c.TypeTag[T]])
    println(implicitly[c.TypeTag[U]])
    println(V)
    c.literalUnit
  }
}