summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/inflate-oom.js
blob: 52d73d66cbd58c6d32a8e257d24d678b9980c3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function test() {
    function foo() {
        return 1;
    };
    oomTest(() => {
        gc();
        foo.toString();
    });
}
var s = ";".repeat(70000);
s += test.toString() + "test()";
s += ";".repeat(70000);
eval(s);