aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t4935.scala
blob: 88940be6bffe752086368c47dbec213d37c24c6d (plain) (tree)
1
2
3
4
5
6
7
8
9








                                             
object Test extends dotty.runtime.LegacyApp {
  for (i <- 0 to 1) {
    val a = Foo
  }
}

object Foo {
  println("hello")
}