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

10 lines
132 B
Rust
Raw Normal View History

2024-08-18 22:45:34 +00:00
#[no_mangle]
pub extern "C" fn hello() {
println!("Hello world!");
}
#[no_mangle]
pub extern "C" fn number() -> u32 {
42
}