]> git.lizzy.rs Git - rust.git/blob - tests/ui/map_flatten.stderr
Auto merge of #4575 - Manishearth:suggestions, r=oli-obk
[rust.git] / tests / ui / map_flatten.stderr
1 error: called `map(..).flatten()` on an `Iterator`. This is more succinctly expressed by calling `.flat_map(..)`
2   --> $DIR/map_flatten.rs:7:21
3    |
4 LL |     let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
5    |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using flat_map instead: `vec![5_i8; 6].into_iter().flat_map(|x| 0..x)`
6    |
7    = note: `-D clippy::map-flatten` implied by `-D warnings`
8
9 error: aborting due to previous error
10