blob: a46ed6c8730ec2a61bed5dbd2f250ff89792407c [file]
#![warn(clippy::flat_map_option)]
fn main() {
// yay
let c = |x| Some(x);
let _ = [1].iter().filter_map(c);
//~^ flat_map_option
let _ = [1].iter().filter_map(Some);
//~^ flat_map_option
// nay
let _ = [1].iter().flat_map(|_| &Some(1));
}