aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t1672.scala
blob: 510530ab40003256a4fdeb3e1d1e7f92e0fa23d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
object Test {
  @annotation.tailrec
  def bar(i : Int) : Int = {
    if (i == 0) 0
    else try {
      throw new RuntimeException
    } catch {
      case _: Throwable => bar(i - 1)
    }
  }

  @annotation.tailrec
  def nestedTry1(i : Int) : Int = {
    if (i == 0) 0
    else try {
      throw new RuntimeException
    } catch {
      case _: Throwable =>
        try { ??? } catch { case _: Throwable => nestedTry1(i - 1) }
    }
  }

  def main(args: Array[String]): Unit = {
    assert(bar(2) == 0)

    assert(nestedTry1(2) == 0)
  }
}