summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1871186.js
blob: fc4620fa6584fe96bd45c59ff5ec6e313ac76ea3 (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| --blinterp-eager; skip-if: !('oomTest' in this)

gc();
function f(x) {
  new Uint8Array(x);
}
f(0);
oomTest(function () {
  f(2048);
});