summaryrefslogtreecommitdiff
path: root/test/files/run/amp.scala
blob: a1924ef637018a79ee1ab9d035cf5fe194ce6597 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
object Test extends App {

  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()())
}