aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/amp.scala
blob: da35242a9c978fc8e763fbb27f512a5190b31bf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
object Test extends dotty.runtime.LegacyApp {

  def foo() = {
    def f: Int = 1
    val x = f _
    x
  }

  def bar(g: => Int) = {
    g _
  }

  Console.println((bar{ Console.println("g called"); 42 })())
  Console.println(foo()())
}