mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
25 lines
840 B
Text
25 lines
840 B
Text
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
|
|
|