26 lines
840 B
Plaintext
26 lines
840 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() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= 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:24:9
|
|
|
|
|
LL | if let Some(y) = x . parse() . ok () {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
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
|
|
|