rust/tests/run-make/wasm-symbols-not-exported/foo.rs
2023-01-11 09:32:08 +00:00

8 lines
105 B
Rust

#![crate_type = "cdylib"]
#[no_mangle]
pub extern fn foo() {
println!("foo");
panic!("test");
}