c2rust-refactor 0.15.0

C2Rust refactoring tool implementation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct S {
    x: i16,
    y: i32,
}

fn f(x: i16, y: i32) {
}

fn g(s: S) {
    f(s.x, s.y);
}

fn main() {
}