rust/tests/run-make/msvc-wholearchive/static.rs
2024-08-19 18:26:55 +00:00

10 lines
132 B
Rust

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