rust/src/test/ui/issues/issue-29948.rs
Thomas Lively 62c3443e96 Re-enable Emscripten's exception handling support
Passes LLVM codegen and Emscripten link-time flags for exception
handling if and only if the panic strategy is `unwind`. Sets the
default panic strategy for Emscripten targets to `unwind`. Re-enables
tests that depend on unwinding support for Emscripten, including
`should_panic` tests.
2019-10-25 15:16:36 -07:00

41 lines
770 B
Rust

// run-pass
// ignore-wasm32-bare compiled with panic=abort by default
use std::panic;
impl<'a> panic::UnwindSafe for Foo<'a> {}
impl<'a> panic::RefUnwindSafe for Foo<'a> {}
struct Foo<'a>(&'a mut bool);
impl<'a> Drop for Foo<'a> {
fn drop(&mut self) {
*self.0 = true;
}
}
fn f<T: FnOnce()>(t: T) {
t()
}
fn main() {
let mut ran_drop = false;
{
let x = Foo(&mut ran_drop);
let x = move || { let _ = x; };
f(x);
}
assert!(ran_drop);
let mut ran_drop = false;
{
let x = Foo(&mut ran_drop);
let result = panic::catch_unwind(move || {
let x = move || { let _ = x; panic!() };
f(x);
});
assert!(result.is_err());
}
assert!(ran_drop);
}