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








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