mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
14 lines
339 B
Rust
14 lines
339 B
Rust
// run-rustfix
|
|
|
|
struct MyTypeNonDebug;
|
|
|
|
#[derive(Debug)]
|
|
struct MyTypeDebug;
|
|
|
|
fn main() {
|
|
let test_debug: Result<MyTypeDebug, u32> = Ok(MyTypeDebug);
|
|
test_debug.expect_err("Testing debug type");
|
|
|
|
let test_non_debug: Result<MyTypeNonDebug, u32> = Ok(MyTypeNonDebug);
|
|
test_non_debug.err().expect("Testing non debug type");
|
|
}
|