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

9 lines
126 B
TypeScript

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