overrecursed-double-fault-1.js (240B)
1 // |jit-test| slow; allow-overrecursed; allow-unhandlable-oom; skip-if: getBuildConfiguration("android") 2 // Disabled on Android due to harness problems (Bug 1532654) 3 4 enableShellAllocationMetadataBuilder(); 5 function a() { 6 a(); 7 } 8 new a;