rust/tests/ui/flat_map_identity.stderr

23 lines
761 B
Plaintext
Raw Normal View History

error: use of `flat_map` with an identity function
--> $DIR/flat_map_identity.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
|
= note: `-D clippy::flat-map-identity` implied by `-D warnings`
2019-06-24 04:21:29 -05:00
error: use of `flat_map` with an identity function
--> $DIR/flat_map_identity.rs:13:22
|
2019-08-13 14:50:52 -05:00
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
2019-06-24 04:21:29 -05:00