c2rust-refactor 0.15.0

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