rust-clippy/tests/ui/unnecessary_flat_map.stderr
2019-08-11 20:34:25 +02:00

16 lines
578 B
Text

error: called `flat_map(|x| x)` on an `Iterator`. This can be simplified by calling `flatten().`
--> $DIR/unnecessary_flat_map.rs:7:5
|
LL | iterator.flat_map(|x| x);
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::flat-map-identity` implied by `-D warnings`
error: called `flat_map(std::convert::identity)` on an `Iterator`. This can be simplified by calling `flatten().`
--> $DIR/unnecessary_flat_map.rs:10:23
|
LL | iterator.flat_map(convert::identity);
| ^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors