c2rust-refactor 0.15.0

C2Rust refactoring tool implementation
1
2
3
4
5
6
7
8
9
10
#[no_mangle]
static A: u32 = 1;
#[no_mangle]
static B: u32 = 1;
#[no_mangle]
static C: u32 = 1;

fn main() {
    println!("{} {} {}", A, B, C);
}