Source code
Revision control
Copy as Markdown
Other Tools
function bug673705() {
var x;
try {
} catch (e) {
} finally {
print(x);
}
return x;
}
assertEq(bug673705(), undefined);
function bug673705() {
var x;
try {
} catch (e) {
} finally {
print(x);
}
return x;
}
assertEq(bug673705(), undefined);