Files
ValueScript/inputs/passing/exceptions/isReturningReset.ts
2023-05-31 12:18:32 +10:00

18 lines
206 B
TypeScript

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