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