summaryrefslogblamecommitdiff
path: root/test/files/run/t4935.scala
blob: 18631e2041ebd28088530fdc94bdbd148694e0f1 (plain) (tree)
1
2
3
4
5
6
7
8
9








                          
object Test extends App {
  for (i <- 0 to 1) {
    val a = Foo
  }
}

object Foo {
  println("hello")
}