summaryrefslogtreecommitdiffstats
path: root/src/test/ui/panic-runtime/auxiliary/panic-runtime-unwind2.rs
blob: 2f7aed9248a0696bc6494fdbbc1d4980a32cdb42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// compile-flags:-C panic=unwind
// no-prefer-dynamic

#![feature(panic_runtime)]
#![crate_type = "rlib"]

#![no_std]
#![panic_runtime]

#[no_mangle]
pub extern "C" fn __rust_maybe_catch_panic() {}

#[no_mangle]
pub extern "C" fn __rust_start_panic() {}

#[no_mangle]
pub extern "C" fn rust_eh_personality() {}