mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
22 lines
761 B
Text
22 lines
761 B
Text
error: use of `flat_map` with an identity function
|
|
--> $DIR/flat_map_identity.rs:10:22
|
|
|
|
|
LL | let _ = iterator.flat_map(|x| x);
|
|
| ^^^^^^^^^^^^^^^ help: try: `flatten()`
|
|
|
|
|
= note: `-D clippy::flat-map-identity` implied by `-D warnings`
|
|
|
|
error: use of `flat_map` with an identity function
|
|
--> $DIR/flat_map_identity.rs:13:22
|
|
|
|
|
LL | let _ = iterator.flat_map(convert::identity);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`
|
|
|
|
error: use of `flat_map` with an identity function
|
|
--> $DIR/flat_map_identity.rs:16:22
|
|
|
|
|
LL | let _ = iterator.flat_map(|x| return x);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `flatten()`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|