about summary refs log tree commit diff
path: root/tests/run-make/msvc-wholearchive/static.rs
blob: 881c88565737ad634d58c65ed0a41149f1b9ba74 (plain)
1
2
3
4
5
6
7
8
9
#[no_mangle]
pub extern "C" fn hello() {
    println!("Hello world!");
}

#[no_mangle]
pub extern "C" fn number() -> u32 {
    42
}