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

VM skips finally clause when catch clause throws. #11244

Closed
floitschG opened this issue Jun 12, 2013 · 1 comment
Closed

VM skips finally clause when catch clause throws. #11244

floitschG opened this issue Jun 12, 2013 · 1 comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. closed-duplicate Closed in favor of an existing report

Comments

@floitschG
Copy link
Contributor

In the following example the finally should be executed but isn't:

main() {
  try {
    throw 0;
  } catch (e, s) {
    rethrow;
  } finally {
    print("finally");
  }
}

@a-siva
Copy link
Contributor

a-siva commented Jun 12, 2013

Added Duplicate label.
Marked as being merged into #430.

@floitschG floitschG added Type-Defect area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. closed-duplicate Closed in favor of an existing report labels Jun 12, 2013
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. closed-duplicate Closed in favor of an existing report
Projects
None yet
Development

No branches or pull requests

2 participants