2021-07-01 16:17:38 +00:00
|
|
|
error: use of `flat_map` with an identity function
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/flat_map_identity.rs:8:22
|
2019-06-24 09:21:29 +00:00
|
|
|
|
|
2019-08-13 19:50:52 +00:00
|
|
|
LL | let _ = iterator.flat_map(|x| x);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `flatten()`
|
2019-06-24 09:21:29 +00:00
|
|
|
|
|
2019-08-11 18:34:25 +00:00
|
|
|
= note: `-D clippy::flat-map-identity` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::flat_map_identity)]`
|
2019-06-24 09:21:29 +00:00
|
|
|
|
2021-07-01 16:17:38 +00:00
|
|
|
error: use of `flat_map` with an identity function
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/flat_map_identity.rs:11:22
|
2019-08-11 17:51:43 +00:00
|
|
|
|
|
2019-08-13 19:50:52 +00:00
|
|
|
LL | let _ = iterator.flat_map(convert::identity);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`
|
2019-08-11 17:51:43 +00:00
|
|
|
|
2021-07-01 16:17:38 +00:00
|
|
|
error: use of `flat_map` with an identity function
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/flat_map_identity.rs:14:22
|
2021-07-01 16:17:38 +00:00
|
|
|
|
|
|
|
|
LL | let _ = iterator.flat_map(|x| return x);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-06-24 09:21:29 +00:00
|
|
|
|