mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
[ignored_unit_patterns
]: check &(), &&(), ...
This commit is contained in:
parent
2cf708d04f
commit
536114c857
4 changed files with 46 additions and 2 deletions
|
@ -52,7 +52,7 @@ impl<'tcx> LateLintPass<'tcx> for IgnoredUnitPatterns {
|
|||
},
|
||||
_ => {},
|
||||
}
|
||||
if matches!(pat.kind, PatKind::Wild) && cx.typeck_results().pat_ty(pat).is_unit() {
|
||||
if matches!(pat.kind, PatKind::Wild) && cx.typeck_results().pat_ty(pat).peel_refs().is_unit() {
|
||||
span_lint_and_sugg(
|
||||
cx,
|
||||
IGNORED_UNIT_PATTERNS,
|
||||
|
|
|
@ -38,3 +38,19 @@ pub fn moo(_: ()) {
|
|||
let _: () = foo().unwrap();
|
||||
let _: () = ();
|
||||
}
|
||||
|
||||
fn test_unit_ref_1() {
|
||||
let x: (usize, &&&&&()) = (1, &&&&&&());
|
||||
match x {
|
||||
(1, ()) => unimplemented!(),
|
||||
//~^ ERROR: matching over `()` is more explicit
|
||||
_ => unimplemented!(),
|
||||
};
|
||||
}
|
||||
|
||||
fn test_unit_ref_2(v: &[(usize, ())]) {
|
||||
for (x, ()) in v {
|
||||
//~^ ERROR: matching over `()` is more explicit
|
||||
let _ = x;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -38,3 +38,19 @@ pub fn moo(_: ()) {
|
|||
let _: () = foo().unwrap();
|
||||
let _: () = ();
|
||||
}
|
||||
|
||||
fn test_unit_ref_1() {
|
||||
let x: (usize, &&&&&()) = (1, &&&&&&());
|
||||
match x {
|
||||
(1, _) => unimplemented!(),
|
||||
//~^ ERROR: matching over `()` is more explicit
|
||||
_ => unimplemented!(),
|
||||
};
|
||||
}
|
||||
|
||||
fn test_unit_ref_2(v: &[(usize, ())]) {
|
||||
for (x, _) in v {
|
||||
//~^ ERROR: matching over `()` is more explicit
|
||||
let _ = x;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,5 +43,17 @@ error: matching over `()` is more explicit
|
|||
LL | let _ = foo().unwrap();
|
||||
| ^ help: use `()` instead of `_`: `()`
|
||||
|
||||
error: aborting due to 7 previous errors
|
||||
error: matching over `()` is more explicit
|
||||
--> $DIR/ignored_unit_patterns.rs:45:13
|
||||
|
|
||||
LL | (1, _) => unimplemented!(),
|
||||
| ^ help: use `()` instead of `_`: `()`
|
||||
|
||||
error: matching over `()` is more explicit
|
||||
--> $DIR/ignored_unit_patterns.rs:52:13
|
||||
|
|
||||
LL | for (x, _) in v {
|
||||
| ^ help: use `()` instead of `_`: `()`
|
||||
|
||||
error: aborting due to 9 previous errors
|
||||
|
||||
|
|
Loading…
Reference in a new issue