mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
18 lines
299 B
Rust
18 lines
299 B
Rust
![]() |
// compile-flags:-C panic=unwind
|
||
|
// no-prefer-dynamic
|
||
|
|
||
|
#![feature(panic_runtime)]
|
||
|
#![crate_type = "rlib"]
|
||
|
|
||
|
#![no_std]
|
||
|
#![panic_runtime]
|
||
|
|
||
|
#[no_mangle]
|
||
|
pub extern fn __rust_maybe_catch_panic() {}
|
||
|
|
||
|
#[no_mangle]
|
||
|
pub extern fn __rust_start_panic() {}
|
||
|
|
||
|
#[no_mangle]
|
||
|
pub extern fn rust_eh_personality() {}
|