7 lines
138 B
Rust
7 lines
138 B
Rust
// error-pattern: the program aborted execution
|
|
// compile-flags: -C panic=abort
|
|
|
|
fn main() {
|
|
std::panic!("panicking from libstd");
|
|
}
|