summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/filter_map_next.stderr
blob: ddc982c93fe6d9838affcb89844978ce09fee1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: called `filter_map(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find_map(..)` instead
  --> $DIR/filter_map_next.rs:7:26
   |
LL |       let _: Option<u32> = vec![1, 2, 3, 4, 5, 6]
   |  __________________________^
LL | |         .into_iter()
LL | |         .filter_map(|x| {
LL | |             if x == 2 {
...  |
LL | |         })
LL | |         .next();
   | |_______________^
   |
   = note: `-D clippy::filter-map-next` implied by `-D warnings`

error: aborting due to previous error