rust/tests/run-make/wasm-symbols-not-imported/foo.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
188 B
Rust
Raw Normal View History

#![crate_type = "cdylib"]
#![no_std]
use core::panic::PanicInfo;
#[no_mangle]
pub extern "C" fn foo() {
panic!()
}
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}