aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0002.scala
blob: 4c58ed3f4f6d65a8aeea75946b544c6782bd9eb1 (plain) (blame)
1
2
3
4
5
6
object main {
  def main(args: Array[String]) = {
    val b = true;
    while (b == true) { }
  }
}