aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t216.scala
blob: 56efb450283fac91f6737e7bb5c63e8bc74e02fc (plain) (blame)
1
2
3
4
5
6
7
object Test extends dotty.runtime.LegacyApp {
  object m {
    val f = { x: Unit => () }
    Console.println("OK")
  }
  m;
}