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

10 lines
127 B
TypeScript

// test_output! 42
export default function () {
try {
throw new Error("Test error");
} finally {
return 42;
}
}