11 lines
236 B
Rust
11 lines
236 B
Rust
// compile-flags: -Zmiri-disable-abi-check
|
|
|
|
extern "C" {
|
|
fn miri_start_panic(payload: *mut u8) -> !;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe { miri_start_panic(&mut 0) }
|
|
//~^ ERROR unwinding past a stack frame that does not allow unwinding
|
|
}
|