mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
7 lines
185 B
Rust
7 lines
185 B
Rust
|
#![warn(clippy::all, clippy::pedantic)]
|
||
|
#![allow(clippy::missing_docs_in_private_items)]
|
||
|
|
||
|
fn main() {
|
||
|
let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
|
||
|
}
|