]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/unnecessary_find_map.stderr
Merge commit 'dc5423ad448877e33cca28db2f1445c9c4473c75' into clippyup
[rust.git] / src / tools / clippy / tests / ui / unnecessary_find_map.stderr
1 error: this `.find_map` can be written more simply using `.find`
2   --> $DIR/unnecessary_find_map.rs:4:13
3    |
4 LL |     let _ = (0..4).find_map(|x| if x > 1 { Some(x) } else { None });
5    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::unnecessary-find-map` implied by `-D warnings`
8
9 error: this `.find_map` can be written more simply using `.find`
10   --> $DIR/unnecessary_find_map.rs:5:13
11    |
12 LL |       let _ = (0..4).find_map(|x| {
13    |  _____________^
14 LL | |         if x > 1 {
15 LL | |             return Some(x);
16 LL | |         };
17 LL | |         None
18 LL | |     });
19    | |______^
20
21 error: this `.find_map` can be written more simply using `.find`
22   --> $DIR/unnecessary_find_map.rs:11:13
23    |
24 LL |       let _ = (0..4).find_map(|x| match x {
25    |  _____________^
26 LL | |         0 | 1 => None,
27 LL | |         _ => Some(x),
28 LL | |     });
29    | |______^
30
31 error: this `.find_map` can be written more simply using `.map(..).next()`
32   --> $DIR/unnecessary_find_map.rs:16:13
33    |
34 LL |     let _ = (0..4).find_map(|x| Some(x + 1));
35    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
36
37 error: aborting due to 4 previous errors
38