2021-03-14 11:10:45 -05:00
|
|
|
// compile-flags: -Cpanic=abort
|
|
|
|
|
|
|
|
//! Unwinding despite `-C panic=abort` is an error.
|
|
|
|
|
|
|
|
extern "Rust" {
|
|
|
|
fn miri_start_panic(payload: *mut u8) -> !;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2021-05-22 09:45:00 -05:00
|
|
|
unsafe { miri_start_panic(&mut 0); } //~ ERROR unwinding past a stack frame that does not allow unwinding
|
2021-03-14 11:10:45 -05:00
|
|
|
}
|