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

10 lines
128 B
TypeScript

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