rust/tests/ui/unnecessary_flat_map.stderr

11 lines
313 B
Plaintext
Raw Normal View History

2019-06-24 11:21:29 +02:00
error: called `flat_map(|x| x)` on an `Iterator`. This can be simplified by calling `flatten().`
--> $DIR/unnecessary_flat_map.rs:5:5
|
LL | iterator.flat_map(|x| x);
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::flat-map` implied by `-D warnings`
error: aborting due to previous error