summaryrefslogtreecommitdiff
path: root/test/files/pos/t1672.scala
blob: 5ee6bb1759c236bc078ef9067dc3ee33796bc404 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Test {
  @annotation.tailrec
  def bar : Nothing = {
    try {
      throw new RuntimeException
    } catch {
      case _: Throwable => bar
    }
  }
}