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