summaryrefslogblamecommitdiff
path: root/test/files/neg/macro-divergence-controlled/Impls_Macros_1.scala
blob: 5c04503260589dcc232df7b783614ee6273bcad5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                            






                                   
                                                                

                           

                                                                                               



                                                                                                                                                 
                         




                                                        
import scala.reflect.macros.whitebox.Context
import language.experimental.macros

trait Complex[T]

class Foo(val foo: Foo)

object Complex {
  def impl[T: c.WeakTypeTag](c: Context): c.Expr[Complex[T]] = {
    import c.universe._
    val tpe = weakTypeOf[T]
    for (f <- tpe.decls.collect{case f: TermSymbol if f.isParamAccessor && !f.isMethod => f}) {
      val trecur = appliedType(typeOf[Complex[_]], List(f.info))
      if (c.openImplicits.tail.exists(ic => ic.pt =:= trecur)) c.abort(c.enclosingPosition, "diverging implicit expansion. reported by a macro!")
      val recur = c.inferImplicitValue(trecur, silent = true)
      if (recur == EmptyTree) c.abort(c.enclosingPosition, s"couldn't synthesize $trecur")
    }
    c.Expr[Null](q"null")
  }

  implicit object ComplexString extends Complex[String]
  implicit def genComplex[T]: Complex[T] = macro impl[T]
}