c2rust-refactor 0.15.0

C2Rust refactoring tool implementation
1
2
3
4
5
6
7
8
fn main() {
    let x = 1 + 2;
    let x = 1 + 2 + 3;

    let x = 1_u8 - 2_u8;
    let x = 1_u32 - 2_u32;
    let x = 1_f64 - 2_f64;
}