blob: 8193a0223d000221531d4f856dbf782178eabc80 [file] [log] [blame]
fn f() -> i32 {
var i : i32;
while (i < 4) {
i = i + 1;
continue;
}
return i;
}