summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1234414.js
blob: 5f8af8e0b688e8dff923111528df6b250d923172 (plain)
1
2
3
4
5
6
7
8
9
oomTest(() => {
    var max = 400;
    function f(b) {
        if (b) {
            f(b - 1);
        } else eval('"use strict"; const z = w; z = 1 + w; c = 5');
    }
    f(max - 1);
});