blob: c3a230f9431ca4c72521161a1518e882baae0c51 [file] [log] [blame]
// |jit-test| error: InternalError: too much recursion
function printStatus (msg) {
msg.split("\n");
}
function enterFunc () {
return undefined;
}
test();
function test() {
enterFunc();
printStatus("");
for (let j = 0; false;) ;
new test();
}