rust-clippy/tests/ui/match_result_ok.stderr

38 lines
1.3 KiB
Text
Raw Normal View History

error: matching on `Some` with `ok()` is redundant
2024-02-17 12:16:29 +00:00
--> tests/ui/match_result_ok.rs:8: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: to override `-D warnings` add `#[allow(clippy::match_result_ok)]`
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
2024-02-17 12:16:29 +00:00
--> tests/ui/match_result_ok.rs:18: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
|
LL | if let Ok(y) = x . parse() {
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: matching on `Some` with `ok()` is redundant
2024-02-17 12:16:29 +00:00
--> tests/ui/match_result_ok.rs:44: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