summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1190733.js
blob: 2b3f4a419df870e57f9647027cb92bfea170c108 (plain)
1
2
3
4
5
6
7
x = [];
Array.prototype.push.call(x, Uint8ClampedArray);
(function() {
    x.length = 9;
})();
Array.prototype.reverse.call(x);