1 2 3 4 5 6 7 8 9
//! Arbitrary implementations for `std::fmt`. use std::fmt::Error; arbitrary!(Error; Error); #[cfg(test)] mod test { no_panic_test!(error => Error); }