diff options
Diffstat (limited to 'js/src/jit-test/tests/modules/bug1485698.js')
-rw-r--r-- | js/src/jit-test/tests/modules/bug1485698.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/modules/bug1485698.js b/js/src/jit-test/tests/modules/bug1485698.js new file mode 100644 index 0000000000..7c03b402cf --- /dev/null +++ b/js/src/jit-test/tests/modules/bug1485698.js @@ -0,0 +1,9 @@ +let m = parseModule(` + function f(x,y,z) { + delete arguments[2]; + import.meta[2] + } + f(1,2,3) +`); +m.declarationInstantiation(); +m.evaluation(); |