DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / run / t3726.scala
12345678
object Test extends App { def test(f: () => Int) = { val x = f() 5 } println(test(() => { println("hi there"); 0 })) }