blob: 35015917e484400908c092f2dcc456f1f412186c (
plain)
1
2
3
4
5
6
7
8
9
|
// |jit-test| skip-if: !hasFunction.oomTest
print = function() {}
function k() { return dissrc(print); }
function j() { return k(); }
function h() { return j(); }
function f() { return h(); }
f();
oomTest(() => f())
|