summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/errors/overrecursed-double-fault-1.js
blob: 634f97e8db23c4c8a3b9d2f99ac5511104863aaf (plain)
1
2
3
4
5
6
7
8
// |jit-test| allow-overrecursed; allow-unhandlable-oom; skip-if: getBuildConfiguration()['android']
// Disabled on Android due to harness problems (Bug 1532654)

enableShellAllocationMetadataBuilder();
function a() {
    a();
}
new a;