rust/tests/fail/abort-terminator.stderr

23 lines
720 B
Plaintext
Raw Normal View History

thread 'main' panicked at 'explicit panic', $DIR/abort-terminator.rs:LL:CC
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: abnormal termination: the program aborted execution
--> $DIR/abort-terminator.rs:LL:CC
|
2022-06-19 22:43:35 -05:00
LL | / extern "C" fn panic_abort() {
2022-06-23 15:08:12 -05:00
LL | |
2022-06-19 22:43:35 -05:00
LL | | panic!()
LL | | }
| |_^ the program aborted execution
|
= note: inside `panic_abort` at $DIR/abort-terminator.rs:LL:CC
note: inside `main` at $DIR/abort-terminator.rs:LL:CC
--> $DIR/abort-terminator.rs:LL:CC
|
LL | panic_abort();
| ^^^^^^^^^^^^^
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
error: aborting due to previous error