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