summaryrefslogtreecommitdiff
path: root/test/files/pos/bug759.scala
blob: 2eac89cd60a18296888e8e0bc696c83a65a0cb97 (plain) (blame)
1
2
3
4
5
6
object Test extends Application {

  def f[A](x : => A) = x

  Console.println(f(Array(42))(0))
}