diff options
Diffstat (limited to 'js/src/jit-test/tests/gc/bug-1053676.js')
-rw-r--r-- | js/src/jit-test/tests/gc/bug-1053676.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/bug-1053676.js b/js/src/jit-test/tests/gc/bug-1053676.js new file mode 100644 index 000000000..3b3b0b117 --- /dev/null +++ b/js/src/jit-test/tests/gc/bug-1053676.js @@ -0,0 +1,12 @@ +// |jit-test| --ion-eager; +if (typeof Symbol !== "function") quit(0); + +var x +(function() { + x +}()); +verifyprebarriers(); +x = x * 0 +x = Symbol(); +gc(); +evalcx("x=1", this); |