1 2 3 4 5 6 7
function loop(actual = 0) { if (function() { actual++ }) {} return actual; } assertEq(loop(), 0);