summaryrefslogtreecommitdiff
path: root/test/files/run/t5894.scala
blob: 5deda34489c0d7cc8de82b8c3ceeccc7c124e225 (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.Context) = { 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
    }
  }
}