bug779245.js (257B)
1 // |jit-test| error: InternalError: too much recursion 2 function printStatus (msg) { 3 msg.split("\n"); 4 } 5 function enterFunc () { 6 return undefined; 7 } 8 test(); 9 function test() { 10 enterFunc(); 11 printStatus(""); 12 for (let j = 0; false;) ; 13 new test(); 14 }