mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
error: matching over `()` is more explicit
|
|
--> $DIR/ignored_unit_patterns.rs:10:12
|
|
|
|
|
LL | Ok(_) => {},
|
|
| ^ help: use `()` instead of `_`: `()`
|
|
|
|
|
= note: `-D clippy::ignored-unit-patterns` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::ignored_unit_patterns)]`
|
|
|
|
error: matching over `()` is more explicit
|
|
--> $DIR/ignored_unit_patterns.rs:11:13
|
|
|
|
|
LL | Err(_) => {},
|
|
| ^ help: use `()` instead of `_`: `()`
|
|
|
|
error: matching over `()` is more explicit
|
|
--> $DIR/ignored_unit_patterns.rs:13:15
|
|
|
|
|
LL | if let Ok(_) = foo() {}
|
|
| ^ help: use `()` instead of `_`: `()`
|
|
|
|
error: matching over `()` is more explicit
|
|
--> $DIR/ignored_unit_patterns.rs:15:28
|
|
|
|
|
LL | let _ = foo().map_err(|_| todo!());
|
|
| ^ help: use `()` instead of `_`: `()`
|
|
|
|
error: matching over `()` is more explicit
|
|
--> $DIR/ignored_unit_patterns.rs:21:9
|
|
|
|
|
LL | let _ = foo().unwrap();
|
|
| ^ help: use `()` instead of `_`: `()`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|