2020-08-28 14:10:16 +00:00
|
|
|
error: matching on `Some` with `ok()` is redundant
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/match_result_ok.rs:9:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if let Some(y) = x.parse().ok() { y } else { 0 }
|
2020-01-19 01:00:34 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
= note: `-D clippy::match-result-ok` implied by `-D warnings`
|
2020-08-28 14:10:16 +00:00
|
|
|
help: consider matching on `Ok(y)` and removing the call to `ok` instead
|
2020-01-09 23:34:13 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if let Ok(y) = x.parse() { y } else { 0 }
|
2021-08-11 14:21:33 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~
|
2020-01-09 23:34:13 +00:00
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
error: matching on `Some` with `ok()` is redundant
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/match_result_ok.rs:19:9
|
2020-01-09 23:34:13 +00:00
|
|
|
|
|
2020-01-19 12:14:47 +00:00
|
|
|
LL | if let Some(y) = x . parse() . ok () {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-09 23:34:13 +00:00
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
help: consider matching on `Ok(y)` and removing the call to `ok` instead
|
2020-01-09 23:34:13 +00:00
|
|
|
|
|
2020-01-19 01:00:34 +00:00
|
|
|
LL | if let Ok(y) = x . parse() {
|
2021-08-11 14:21:33 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
error: matching on `Some` with `ok()` is redundant
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/match_result_ok.rs:45:5
|
2021-09-28 17:03:12 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(a) = wat.next().ok() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider matching on `Ok(a)` and removing the call to `ok` instead
|
|
|
|
|
|
|
|
|
LL | while let Ok(a) = wat.next() {
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|