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

13 lines
139 B
TypeScript

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