2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2021-12-03 09:32:51 -06:00
|
|
|
// needs-unwind
|
2019-10-18 16:47:54 -05:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
2017-10-22 22:01:00 -05:00
|
|
|
|
2017-03-08 15:19:09 -06:00
|
|
|
use std::panic;
|
|
|
|
|
|
|
|
impl<'a> panic::UnwindSafe for Foo<'a> {}
|
|
|
|
impl<'a> panic::RefUnwindSafe for Foo<'a> {}
|
|
|
|
|
2016-02-07 05:35:39 -06:00
|
|
|
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);
|
|
|
|
|
2017-03-08 15:19:09 -06:00
|
|
|
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);
|
|
|
|
}
|