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

14 lines
190 B
TypeScript

//! test_output("🤷‍♂️")
export default function () {
while (true) {
try {
throw new Error("boom?");
} finally {
break;
}
}
return "🤷‍♂️";
}