diff options
Diffstat (limited to 'js/src/jit-test/tests/basic/bug1170355.js')
-rw-r--r-- | js/src/jit-test/tests/basic/bug1170355.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/bug1170355.js b/js/src/jit-test/tests/basic/bug1170355.js new file mode 100644 index 000000000..cddb3c547 --- /dev/null +++ b/js/src/jit-test/tests/basic/bug1170355.js @@ -0,0 +1,3 @@ +x = Array(4294967295); +x[1] = 0; +Array.prototype.shift.call(x); |