]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/auxiliary/panic-runtime-unwind2.rs
Rollup merge of #57229 - mikeyhew:fix-56806, r=varkor
[rust.git] / src / test / compile-fail / auxiliary / panic-runtime-unwind2.rs
1 // compile-flags:-C panic=unwind
2 // no-prefer-dynamic
3
4 #![feature(panic_runtime)]
5 #![crate_type = "rlib"]
6
7 #![no_std]
8 #![panic_runtime]
9
10 #[no_mangle]
11 pub extern fn __rust_maybe_catch_panic() {}
12
13 #[no_mangle]
14 pub extern fn __rust_start_panic() {}
15
16 #[no_mangle]
17 pub extern fn rust_eh_personality() {}