32 lines
851 B
Plaintext
32 lines
851 B
Plaintext
error: Matching on `Some` with `ok()` is redundant
|
|
--> $DIR/if_let_some_result.rs:6:5
|
|
|
|
|
LL | / if let Some(y) = x.parse().ok() {
|
|
LL | | y
|
|
LL | | } else {
|
|
LL | | 0
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::if-let-some-result` implied by `-D warnings`
|
|
help: Consider matching on `Ok(y)` and removing the call to `ok` instead
|
|
|
|
|
LL | if let Ok(y) = x.parse() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: Matching on `Some` with `ok()` is redundant
|
|
--> $DIR/if_let_some_result.rs:23:9
|
|
|
|
|
LL | / if let Some(y) = x.parse().ok() {
|
|
LL | | return y;
|
|
LL | | };
|
|
| |_________^
|
|
|
|
|
help: Consider matching on `Ok(y)` and removing the call to `ok` instead
|
|
|
|
|
LL | if let Ok(y) = x.parse() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|