summaryrefslogtreecommitdiff
path: root/test/pending/run/exc.scala
blob: 26f80412c0d5a5a5d9b75d8ff1dd5eb5dd19f77a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object exc1 extends Application {
  def foo() = {
    while (true) {
      try {
      } catch {
        case ex: Exception =>
      }
    }
  }
}