Files
ValueScript/inputs/passing/exceptions/tryReturnFinallyReturn.ts
Andrew Morris ba68ef697a Test exceptions
2023-03-23 15:48:33 +11:00

10 lines
107 B
TypeScript

// test_output! 42
export default function () {
try {
return 37;
} finally {
return 42;
}
}