8 lines
198 B
Rust
8 lines
198 B
Rust
// ignore-test: Abort panics are not yet supported
|
|
//error-pattern: the evaluated program panicked
|
|
// compile-flags: -C panic=abort
|
|
|
|
fn main() {
|
|
core::panic!("{}-panicking from libcore", 42);
|
|
}
|