Files
ValueScript/inputs/passing/dontRevertMath.ts
2023-03-30 13:44:56 +11:00

9 lines
125 B
TypeScript

// test_output! undefined
export default function () {
try {
Math.sin(1);
throw new Error("boom");
} catch {}
}