summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_find_map.stderr
blob: fb33c122fe337e1c802b1aeec31023cedf3064ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
error: this `.find_map` can be written more simply using `.find`
  --> $DIR/unnecessary_find_map.rs:4:13
   |
LL |     let _ = (0..4).find_map(|x| if x > 1 { Some(x) } else { None });
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::unnecessary-find-map` implied by `-D warnings`

error: this `.find_map` can be written more simply using `.find`
  --> $DIR/unnecessary_find_map.rs:5:13
   |
LL |       let _ = (0..4).find_map(|x| {
   |  _____________^
LL | |         if x > 1 {
LL | |             return Some(x);
LL | |         };
LL | |         None
LL | |     });
   | |______^

error: this `.find_map` can be written more simply using `.find`
  --> $DIR/unnecessary_find_map.rs:11:13
   |
LL |       let _ = (0..4).find_map(|x| match x {
   |  _____________^
LL | |         0 | 1 => None,
LL | |         _ => Some(x),
LL | |     });
   | |______^

error: this `.find_map` can be written more simply using `.map(..).next()`
  --> $DIR/unnecessary_find_map.rs:16:13
   |
LL |     let _ = (0..4).find_map(|x| Some(x + 1));
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 4 previous errors