1//! Arbitrary implementations for `std::panic`. 2 3use std::panic::AssertUnwindSafe; 4 5wrap_ctor!(AssertUnwindSafe, AssertUnwindSafe); 6 7#[cfg(test)] 8mod test { 9 no_panic_test!(assert_unwind_safe => AssertUnwindSafe<u8>); 10}