10 lines
252 B
Rust
10 lines
252 B
Rust
// run-rustfix
|
|
|
|
#![warn(clippy::all, clippy::pedantic)]
|
|
#![allow(clippy::missing_docs_in_private_items)]
|
|
|
|
fn main() {
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().flat_map(|x| 0..x).collect();
|
|
let _: Option<_> = (Some(Some(1))).and_then(|x| x);
|
|
}
|