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

                                 







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