aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-term-declared-in-method/Macros_Test_2.scala
blob: d40eb4c6048e05d5bd25df327ff9b3b0da43b26a (plain) (blame)
1
2
3
4
5
6
7
8
object Test extends dotty.runtime.LegacyApp {
  def bar() = {
    def foo: Unit = macro Impls.foo
    foo
  }

  bar()
}