]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/if_let_some_result.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / if_let_some_result.stderr
1 error: matching on `Some` with `ok()` is redundant
2 --> $DIR/if_let_some_result.rs:7:5
3 |
4 LL | if let Some(y) = x.parse().ok() { y } else { 0 }
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = note: `-D clippy::if-let-some-result` implied by `-D warnings`
8 help: consider matching on `Ok(y)` and removing the call to `ok` instead
9 |
10 LL | if let Ok(y) = x.parse() { y } else { 0 }
11 | ~~~~~~~~~~~~~~~~~~~~~~~~
12
13 error: matching on `Some` with `ok()` is redundant
14 --> $DIR/if_let_some_result.rs:17:9
15 |
16 LL | if let Some(y) = x . parse() . ok () {
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 |
19 help: consider matching on `Ok(y)` and removing the call to `ok` instead
20 |
21 LL | if let Ok(y) = x . parse() {
22 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23
24 error: aborting due to 2 previous errors
25