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

18 lines
205 B
TypeScript

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