summaryrefslogtreecommitdiff
path: root/test/files/run/exc1.scala
blob: 9008f9d149ff073a138bf04acce29da373fbe2f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Test extends App {
  def foo(): Unit = {
    while (true) {
      try {
      } catch {
        case ex: Exception =>
      }
    }
  }
}