mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 08:36:03 +00:00
8 lines
105 B
Rust
8 lines
105 B
Rust
#![crate_type = "cdylib"]
|
|
|
|
#[no_mangle]
|
|
pub extern fn foo() {
|
|
println!("foo");
|
|
panic!("test");
|
|
}
|