rust/tests/ui/if_let_some_result.stderr

26 lines
840 B
Text
Raw Normal View History

error: Matching on `Some` with `ok()` is redundant
--> $DIR/if_let_some_result.rs:6:5
|
2020-01-19 02:00:34 +01:00
LL | if let Some(y) = x.parse().ok() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::if-let-some-result` implied by `-D warnings`
2020-01-10 00:34:13 +01:00
help: Consider matching on `Ok(y)` and removing the call to `ok` instead
|
LL | if let Ok(y) = x.parse() {
2020-01-10 20:34:01 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-10 00:34:13 +01:00
error: Matching on `Some` with `ok()` is redundant
2020-01-19 02:00:34 +01:00
--> $DIR/if_let_some_result.rs:24:9
2020-01-10 00:34:13 +01:00
|
2020-01-19 13:14:47 +01:00
LL | if let Some(y) = x . parse() . ok () {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-10 00:34:13 +01:00
|
help: Consider matching on `Ok(y)` and removing the call to `ok` instead
|
2020-01-19 02:00:34 +01:00
LL | if let Ok(y) = x . parse() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-10 00:34:13 +01:00
error: aborting due to 2 previous errors
2018-01-16 17:06:27 +01:00