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