summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/errors/bug-1886940-2.js
blob: 654071be04b5199acc97391e1fd85edc26a71f6f (plain)
1
2
3
4
5
6
oomTest(function () {
  (function () {
    var x = [disassemble, new Int8Array(2 ** 8 + 1)];
    x.shift().apply([], x);
  })();
});