rust/tests/run-make/wasm-export-all-symbols/bar.rs
2023-01-11 09:32:08 +00:00

8 lines
101 B
Rust

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