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








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