summaryrefslogtreecommitdiff
path: root/test/files/run/t5894.scala
blob: 55767d8889edfd413d6a0be8e0db9c581f36a13a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import language.experimental.macros

class Test

object Test {
  def foo = macro fooImpl
  def fooImpl(c: reflect.macros.BlackboxContext) = { import c.universe._; c.Expr[Unit](q"()") }

  def main(args: Array[String]) {
    try {
      val method = classOf[Test].getMethod("foo")
      sys.error("Static forwarder generated for macro: " + method)
    } catch {
      case _: NoSuchMethodException => // okay
    }
  }
}