//@run-rustfix #![allow(unused)] struct MyTypeNonDebug; #[derive(Debug)] struct MyTypeDebug; fn main() { let test_debug: Result = Ok(MyTypeDebug); test_debug.err().expect("Testing debug type"); let test_non_debug: Result = Ok(MyTypeNonDebug); test_non_debug.err().expect("Testing non debug type"); } #[clippy::msrv = "1.16"] fn msrv_1_16() { let x: Result = Ok(16); x.err().expect("16"); } #[clippy::msrv = "1.17"] fn msrv_1_17() { let x: Result = Ok(17); x.err().expect("17"); }