summaryrefslogtreecommitdiff
path: root/test/files/run/exc2.scala
blob: 00a269a364fe4bbc63f0ad859c68fcd9293b4e8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
object Test extends Application {
  def foo() = {
    while (true) {
      try {
        Console.println("foo")
      } catch {
        case ex: Exception =>
          Console.println("bar")
      }
    }
  }
}