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