summaryrefslogblamecommitdiff
path: root/test/pending/run/exc1.scala
blob: 48fc084dda6fd833ef8994a0509ed21254e68dee (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                 
object exc1 extends Application {
  def foo(): unit = {
    while (true) {
      try {
      } catch {
        case ex: Exception =>
      }
    }
  }
}