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

13 lines
140 B
TypeScript

//! test_output("Ok")
export default function () {
let result: string;
try {
} finally {
result = "Ok";
}
return result;
}