diff options
Diffstat (limited to 'js/src/jit-test/tests/bug1681258.js')
-rw-r--r-- | js/src/jit-test/tests/bug1681258.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/bug1681258.js b/js/src/jit-test/tests/bug1681258.js new file mode 100644 index 0000000000..921899a814 --- /dev/null +++ b/js/src/jit-test/tests/bug1681258.js @@ -0,0 +1,8 @@ +// |jit-test| skip-if: !('oomTest' in this);--enable-top-level-await;--fast-warmup;--blinterp-warmup-threshold=10 +ignoreUnhandledRejections(); + +oomTest(async function() { + let m = parseModule(``); + m.declarationInstantiation(); + await m.evaluation(); +}); |