rust/tests/ui/cfg/cfg-panic.rs
Urgau 3ba0139c66 Remove useless configs in tests
Since they are never set and don't have impact on the test.

Or for the cfg-panic tests are already tested with check-cfg.
2024-04-07 01:16:45 +02:00

13 lines
215 B
Rust

//@ build-pass
//@ compile-flags: -C panic=unwind
//@ needs-unwind
#[cfg(panic = "abort")]
pub fn bad() -> i32 { }
#[cfg(not(panic = "unwind"))]
pub fn bad() -> i32 { }
#[cfg(panic = "unwind")]
pub fn main() { }