mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
15 lines
341 B
Rust
15 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");
|
||
|
}
|