blob: c3a230f9431ca4c72521161a1518e882baae0c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// |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();
}
|