reid-llvm/examples/loop_edge_case.reid

9 lines
131 B
Plaintext

fn main() -> i32 {
for i in 0..1 {
let j = i;
if i != j {
return 1;
}
}
return 0;
}