Source code

Revision control

Copy as Markdown

Other Tools

// |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();
}