summaryrefslogblamecommitdiff
path: root/test/files/run/exc2.scala
blob: bb41f5286cf4688f70d6281c67501d4027d45606 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                         










                                
object Test extends App {
  def foo() = {
    while (true) {
      try {
        Console.println("foo")
      } catch {
        case ex: Exception =>
          Console.println("bar")
      }
    }
  }
}