mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
47 lines
1.8 KiB
Text
47 lines
1.8 KiB
Text
error: using `if let` to pattern match a bool
|
|
--> tests/ui/redundant_pattern_matching_if_let_true.rs:22:8
|
|
|
|
|
LL | if let true = k > 1 {}
|
|
| ^^^^^^^^^^^^^^^^ help: consider using the condition directly: `k > 1`
|
|
|
|
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_pattern_matching)]`
|
|
|
|
error: using `if let` to pattern match a bool
|
|
--> tests/ui/redundant_pattern_matching_if_let_true.rs:23:8
|
|
|
|
|
LL | if let false = k > 5 {}
|
|
| ^^^^^^^^^^^^^^^^^ help: consider using the condition directly: `!(k > 5)`
|
|
|
|
error: using `if let` to pattern match a bool
|
|
--> tests/ui/redundant_pattern_matching_if_let_true.rs:24:8
|
|
|
|
|
LL | if let (true) = k > 1 {}
|
|
| ^^^^^^^^^^^^^^^^^^ help: consider using the condition directly: `k > 1`
|
|
|
|
error: using `if let` to pattern match a bool
|
|
--> tests/ui/redundant_pattern_matching_if_let_true.rs:26:11
|
|
|
|
|
LL | while let true = k > 1 {
|
|
| ^^^^^^^^^^^^^^^^ help: consider using the condition directly: `k > 1`
|
|
|
|
error: using `if let` to pattern match a bool
|
|
--> tests/ui/redundant_pattern_matching_if_let_true.rs:29:11
|
|
|
|
|
LL | while let true = condition!() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the condition directly: `condition!()`
|
|
|
|
error: using `matches!` to pattern match a bool
|
|
--> tests/ui/redundant_pattern_matching_if_let_true.rs:33:5
|
|
|
|
|
LL | matches!(k > 5, true);
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using the condition directly: `k > 5`
|
|
|
|
error: using `matches!` to pattern match a bool
|
|
--> tests/ui/redundant_pattern_matching_if_let_true.rs:34:5
|
|
|
|
|
LL | matches!(k > 5, false);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using the condition directly: `!(k > 5)`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|