mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
7 lines
147 B
Rust
7 lines
147 B
Rust
// error-pattern: the program aborted execution
|
|
// compile-flags: -C panic=abort
|
|
|
|
fn main() {
|
|
core::panic!("{}-panicking from libcore", 42);
|
|
}
|