rust/tests/ui/cfg/cfg-panic-abort.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
218 B
Rust

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