summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/oomInExceptionHandlerBailout.js
blob: cdd20cd9b7f2865024e4b976a67d6855973e9ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
oomTest(() => {
    let x = 0;
    try {
        for (let i = 0; i < 100; i++) {
            if (i == 99)
                throw "foo";
            x += i;
        }
    } catch (e) {
        x = 0;
    }
    return x;
});