summaryrefslogtreecommitdiff
path: root/test/files/run/macro-expand-tparams-prefix-d1/Impls_1.scala
blob: 4da5a9b82318e43e8e72a42b6d739c5da51ed2b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import scala.reflect.makro.{Context => Ctx}

object Impls {
  def foo[T, U: c.TypeTag, V](c: Ctx)(implicit T: c.TypeTag[T], V: c.TypeTag[V]): c.Expr[Unit] = {
    import c.mirror._
    Expr(Block(List(
      Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant(T.toString)))),
      Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant(implicitly[c.TypeTag[U]].toString)))),
      Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant(V.toString))))),
      Literal(Constant(()))))
  }
}