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); });