rust/tests/fail/panic/panic_abort3.rs

9 lines
273 B
Rust
Raw Normal View History

//@error-pattern: the program aborted execution
//@normalize-stderr-test: "\| +\^+" -> "| ^"
//@normalize-stderr-test: "libc::abort\(\);|core::intrinsics::abort\(\);" -> "ABORT();"
//@compile-flags: -C panic=abort
2017-02-09 03:59:42 -06:00
fn main() {
2019-02-06 04:39:16 -06:00
core::panic!("panicking from libcore");
2017-02-09 03:59:42 -06:00
}