summaryrefslogtreecommitdiff
path: root/test/files/run/bug216.scala
blob: 8f67c7b024d71d3f3f19a8872f9d33d909b235d1 (plain) (blame)
1
2
3
4
5
6
7
object Test extends Application {
  object m {
    val f = { x: unit => () }
    Console.println("OK")
  }
  m;
}