rust/tests/run-make/wasm-export-all-symbols/bar.rs

8 lines
105 B
Rust

#![crate_type = "rlib"]
#[no_mangle]
pub extern "C" fn foo() {}
#[no_mangle]
pub static FOO: u64 = 42;