mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
3ba0139c66
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.
12 lines
215 B
Rust
12 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() { }
|