blob: c247b1826919d26757603b3d7b459809ea93153a [file] [log] [blame]
//@ runFTLEager("--watchdog=1000", "--watchdog-exception-ok")
function foo(a, b) {
'use strict';
if (a === 0) {
return;
}
if (a === 0) {
return foo(a + 0);
}
if (a === 0) {
return foo(+a, 0);
}
return foo(b / 1, a, 0);
0 === 0
}
foo(1, 5);