1//! Arbitrary implementations for `std::boxed`. 2 3wrap_from!(Box); 4 5#[cfg(test)] 6mod test { 7 no_panic_test!(boxed => Box<u8>); 8}