rust/tests/ui/map_flatten.stderr

11 lines
498 B
Plaintext
Raw Normal View History

error: called `map(..).flatten()` on an `Iterator`. This is more succinctly expressed by calling `.flat_map(..)`
2018-12-09 23:27:19 -06:00
--> $DIR/map_flatten.rs:14:21
2018-10-06 11:18:06 -05:00
|
2018-12-09 23:27:19 -06:00
14 | let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using flat_map instead: `vec![5_i8; 6].into_iter().flat_map(|x| 0..x)`
|
= note: `-D clippy::map-flatten` implied by `-D warnings`
error: aborting due to previous error