summaryrefslogtreecommitdiff
path: root/test/files/run/macro-expand-ownerchain-a/Test_2.scala
blob: 738afc75df5b0561409d408bf359bde4dcbd8d32 (plain) (blame)
1
2
3
4
object Test extends App {
  Macros.foo(y = 1, x = ((x: Int) => x)(2))
  Macros.foo(y = 1, x = {val x = 2; x})
}