VM skips finally clause when catch clause throws. #11244
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
In the following example the finally should be executed but isn't:
main() {
try {
throw 0;
} catch (e, s) {
rethrow;
} finally {
print("finally");
}
}
The text was updated successfully, but these errors were encountered: