proptest-arbitrary 0.2.2

The Arbitrary trait for proptest and implementations for the standard library.
Documentation
//! Arbitrary implementations for `std::panic`.

use std::panic::AssertUnwindSafe;

wrap_ctor!(AssertUnwindSafe, AssertUnwindSafe);

#[cfg(test)]
mod test {
    no_panic_test!(assert_unwind_safe => AssertUnwindSafe<u8>);
}