]> git.lizzy.rs Git - rust.git/blob - tests/ui/map_flatten.fixed
51732e02be4fe9244a703f4c2547b275e160f891
[rust.git] / tests / ui / map_flatten.fixed
1 // run-rustfix
2
3 #![warn(clippy::all, clippy::pedantic)]
4 #![allow(clippy::missing_docs_in_private_items)]
5
6 fn main() {
7     let _: Vec<_> = vec![5_i8; 6].into_iter().flat_map(|x| 0..x).collect();
8 }