2020-07-25 19:02:49 +01:00
|
|
|
// build-pass
|
|
|
|
// compile-flags: -C panic=unwind
|
2021-04-29 17:04:16 +00:00
|
|
|
// needs-unwind
|
2022-02-04 17:14:58 +00:00
|
|
|
|
2020-07-25 19:02:49 +01:00
|
|
|
|
|
|
|
#[cfg(panic = "abort")]
|
|
|
|
pub fn bad() -> i32 { }
|
|
|
|
|
|
|
|
#[cfg(not(panic = "unwind"))]
|
|
|
|
pub fn bad() -> i32 { }
|
|
|
|
|
|
|
|
#[cfg(panic = "some_imaginary_future_panic_handler")]
|
|
|
|
pub fn bad() -> i32 { }
|
|
|
|
|
|
|
|
#[cfg(panic = "unwind")]
|
|
|
|
pub fn main() { }
|