blob: 7cf4af70406161b0e582f3ae18ef3d013be6c8e5 [file] [log] [blame]
// |jit-test| error: InternalError: too much recursion
function TestCase(n, d, e, a) {
this.bugnumber = typeof(BUGNUMER) != 'undefined' ? BUGNUMBER : '';
this.type = (typeof window == 'undefined' ? 'shell' : 'browser');
gTestcases[gTc++] = this;
if (optionName) {}
{} {} {} // Seems to be required to crash
}
function f() {}
function g(n, h) {
var t = g(TestCase.toSource());
}
g(80, f);