summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/filter_map_identity.stderr
blob: 43c9fdca4fbe0251b54e6e6c70f4ab2fe3873eb8 (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
error: use of `filter_map` with an identity function
  --> $DIR/filter_map_identity.rs:8:22
   |
LL |     let _ = iterator.filter_map(|x| x);
   |                      ^^^^^^^^^^^^^^^^^ help: try: `flatten()`
   |
   = note: `-D clippy::filter-map-identity` implied by `-D warnings`

error: use of `filter_map` with an identity function
  --> $DIR/filter_map_identity.rs:11:22
   |
LL |     let _ = iterator.filter_map(std::convert::identity);
   |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`

error: use of `filter_map` with an identity function
  --> $DIR/filter_map_identity.rs:15:22
   |
LL |     let _ = iterator.filter_map(identity);
   |                      ^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`

error: use of `filter_map` with an identity function
  --> $DIR/filter_map_identity.rs:18:22
   |
LL |     let _ = iterator.filter_map(|x| return x);
   |                      ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`

error: aborting due to 4 previous errors