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

14 lines
189 B
TypeScript

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