2019-08-12 14:42:57 -05:00
|
|
|
error: called `flat_map(|x| x)` on an `Iterator`
|
2019-08-13 14:50:52 -05:00
|
|
|
--> $DIR/unnecessary_flat_map.rs:10:22
|
2019-06-24 04:21:29 -05:00
|
|
|
|
|
2019-08-13 14:50:52 -05:00
|
|
|
LL | let _ = iterator.flat_map(|x| x);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `flatten()`
|
2019-06-24 04:21:29 -05:00
|
|
|
|
|
2019-08-11 13:34:25 -05:00
|
|
|
= note: `-D clippy::flat-map-identity` implied by `-D warnings`
|
2019-06-24 04:21:29 -05:00
|
|
|
|
2019-08-12 14:42:57 -05:00
|
|
|
error: called `flat_map(std::convert::identity)` on an `Iterator`
|
2019-08-13 14:50:52 -05:00
|
|
|
--> $DIR/unnecessary_flat_map.rs:13:22
|
2019-08-11 12:51:43 -05:00
|
|
|
|
|
2019-08-13 14:50:52 -05:00
|
|
|
LL | let _ = iterator.flat_map(convert::identity);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`
|
2019-08-11 12:51:43 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-06-24 04:21:29 -05:00
|
|
|
|