summaryrefslogblamecommitdiff
path: root/test/files/run/macro-expand-tparams-prefix-b/Impls_1.scala
blob: 9378e67712369a22e145b939059b551f7d87dee5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                       
                                            

              
                                                                       
                       

                                        
                                                                                                                                             
                      
   
 
import scala.reflect.runtime.universe._
import scala.reflect.macros.{Context => Ctx}

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