bug720169.js (101B)
1 function foo() { 2 var x = 0; 3 var y = 0; 4 while (x++ < 100) 5 y++; 6 assertEq(y, 100); 7 } 8 foo();