Test that we don't try to revert builtins

This commit is contained in:
Andrew Morris
2023-03-30 13:44:56 +11:00
parent 0ea67cba98
commit 3225de6150

View File

@@ -0,0 +1,8 @@
// test_output! undefined
export default function () {
try {
Math.sin(1);
throw new Error("boom");
} catch {}
}