rust/tests/fail/panic/panic_abort2.rs
2022-06-01 10:53:38 -04:00

9 lines
278 B
Rust

// error-pattern: the program aborted execution
// normalize-stderr-test: "\| +\^+" -> "| ^"
// normalize-stderr-test: "libc::abort\(\);|core::intrinsics::abort\(\);" -> "ABORT();"
// compile-flags: -C panic=abort
fn main() {
std::panic!("{}-panicking from libstd", 42);
}