diff options
Diffstat (limited to 'js/src/jit-test/tests/ion/bug861439.js')
-rw-r--r-- | js/src/jit-test/tests/ion/bug861439.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug861439.js b/js/src/jit-test/tests/ion/bug861439.js new file mode 100644 index 0000000000..f06dae6a65 --- /dev/null +++ b/js/src/jit-test/tests/ion/bug861439.js @@ -0,0 +1,14 @@ + +try { + x = evalcx('') + toSource = (function() { + x = (new WeakMap).get(function() {}) + }) + valueOf = (function() { + schedulezone(x) + }) + this + '' + for (v of this) {} +} catch (e) {} +gc() +this + 1 |