summaryrefslogtreecommitdiff
path: root/test/files/run/t1672.scala
blob: ee025b90319015c87ced6f273bc77fed06ef1747 (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]) {
    assert(bar(2) == 0)

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