Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sometimes @tailrec does not compile #6479

Closed
scabug opened this issue Oct 5, 2012 · 2 comments
Closed

Sometimes @tailrec does not compile #6479

scabug opened this issue Oct 5, 2012 · 2 comments

Comments

@scabug
Copy link

scabug commented Oct 5, 2012

Works for 2.9.1, 2.9.2 and 2.10.0-M2. Does not work for 2.10.0-M7.

object TailrecAfterTryCatch {

  @annotation.tailrec
  final def good1() {
    1 match {
      case 2 => {
        try {
        //  return
        } catch {
          case e: ClassNotFoundException =>
        }
        good1()
      }
    }
  }

  @annotation.tailrec
  final def good2() {
    //1 match {
    //  case 2 => {
        try {
          return
        } catch {
          case e: ClassNotFoundException =>
        }
        good2()
    //  }
    //}
  }

  @annotation.tailrec
  final def good3() {
    val 1 = 2
    try {
      return
    } catch {
      case e: ClassNotFoundException =>
    }
    good3()
  }

  @annotation.tailrec
  final def bad() {
    1 match {
      case 2 => {
        try {
          return
        } catch {
          case e: ClassNotFoundException =>
        }
        bad()
      }
    }
  }

}
@scabug
Copy link
Author

scabug commented Oct 5, 2012

Imported From: https://issues.scala-lang.org/browse/SI-6479?orig=1
Reporter: @Atry
Affected Versions: 2.10.0-M7

@scabug
Copy link
Author

scabug commented Jan 13, 2013

@retronym said:
Not really a pattern matcher bug, but rather an existing issue in Uncurry with label jumps:

scala/scala#1892

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants