aboutsummaryrefslogblamecommitdiff
path: root/tests/run/exc2.scala
blob: 4075cb26fcbb8e174daab842571684bdfb70695c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                             
object Test extends dotty.runtime.LegacyApp {
  def foo() = {
    while (true) {
      try {
        Console.println("foo")
      } catch {
        case ex: Exception =>
          Console.println("bar")
      }
    }
  }
}