summaryrefslogtreecommitdiff
path: root/test/files/run/macro-expand-tparams-explicit/Impls_1.scala
blob: 0a879687e81acd51caf7397efea6ba9d0440a54f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.reflect.runtime.universe._
import scala.reflect.macros.{Context => Ctx}

object Impls {
  def foo[U: c.AbsTypeTag](c: Ctx) = {
    import c.universe._
    val U = implicitly[c.AbsTypeTag[U]]
    val body = Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant(U.toString))))
    c.Expr[Unit](body)
  }
}