summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1259490.js
blob: d349bf27d47755aec3e18ee1023272bce36a31ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
try { eval("3 ** 4") } catch (e) {
    if (!(e instanceof SyntaxError))
        throw e;
    quit();
}
eval(`

gczeal(8);
for (var k = 0; k < 99; ++k) {
    String(-(0 ** (Object | 0 * Object)))
}

`)