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