aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t7047/Impls_Macros_1.scala
blob: 787ea6cfe824c7ba186252394176349f78d754c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import scala.reflect.macros.blackbox.Context
import language.experimental.macros

class Foo

object Macros {
  def impl(c: Context) = {
    import c.universe._
    try {
      c.inferImplicitValue(typeOf[Foo], silent = false)
      c.abort(c.enclosingPosition, "silent=false is not working")
    } catch {
      case _: Exception =>
    }
    c.Expr[Null](Literal(Constant(null)))
  }

  def foo = macro impl
}