-
-
Notifications
You must be signed in to change notification settings - Fork 694
Closed
Labels
Description
class Main {
static public function main() {
var value = false;
try {
try {
throw '';
} catch(e:String) {
value = true;
trace('inner catch: value == $value');
throw e;
}
} catch(e:String) {
trace('outer catch: value == $value');
}
}
}Actual output:
Main.hx:9: inner catch: value == true
Main.hx:13: outer catch: value == false
Expected output:
Main.hx:9: inner catch: value == true
Main.hx:13: outer catch: value == true
Reactions are currently unavailable