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