rust-clippy/tests/ui/match_result_ok.stderr

37 lines
1.2 KiB
Text
Raw Normal View History

error: matching on `Some` with `ok()` is redundant
--> $DIR/match_result_ok.rs:9:5
|
LL | if let Some(y) = x.parse().ok() { y } else { 0 }
2020-01-19 01:00:34 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::match-result-ok` implied by `-D warnings`
help: consider matching on `Ok(y)` and removing the call to `ok` instead
2020-01-09 23:34:13 +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
error: matching on `Some` with `ok()` is redundant
--> $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
|
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
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: matching on `Some` with `ok()` is redundant
--> $DIR/match_result_ok.rs:45:5
|
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