rust/tests/run-make/msvc-wholearchive/static.rs

10 lines
132 B
Rust

#[no_mangle]
pub extern "C" fn hello() {
println!("Hello world!");
}
#[no_mangle]
pub extern "C" fn number() -> u32 {
42
}