c2rust-refactor 0.10.1

C2Rust refactoring tool implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    let mut i;

    i = 0;
    'a: while (i < 10) {
        println!("{}", i);
        i = i + 1;
    }

    i = 0;
    'a: while (i < 10) {
        println!("{}", i);
        i = i + 2;
    }
}