aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-term-declared-in-default-param/Macros_Test_2.scala
blob: 856a4e44f995629380ed37f83cbf79690c2607b2 (plain) (blame)
1
2
3
4
5
6
7
object Test extends dotty.runtime.LegacyApp {
  def foo(bar: String = { def foo: String = macro Impls.foo; foo }) = println(bar)

  foo()
  foo("it works")
  foo()
}