Files
ValueScript/inputs/passing/exceptions/finallyBreakSwallowsReturn.ts
2023-03-23 17:17:27 +11:00

14 lines
178 B
TypeScript

// test_output! "that thing"
export default function () {
while (true) {
try {
return "this thing";
} finally {
break;
}
}
return "that thing";
}