ea68758299
This directive isn't automatically set by compiletest or x.py, but can be turned on manually for targets that require it.
12 lines
188 B
Rust
12 lines
188 B
Rust
// run-pass
|
|
// needs-unwind
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
|
|
|
fn worker() -> ! {
|
|
panic!()
|
|
}
|
|
|
|
fn main() {
|
|
std::panic::catch_unwind(worker).unwrap_err();
|
|
}
|