blob: a878bbb93070109bef459a696316ff832d5924c5 [file] [log] [blame]
function testContinue() {
var i;
var total = 0;
for (i = 0; i < 20; ++i) {
if (i == 11)
continue;
total++;
}
return total;
}
assertEq(testContinue(), 19);