blob: e08d9a14533b21d9720cc266b4ee63cd74d33c50 [file] [log] [blame]
#![warn(clippy::flat_map_option)]
#![allow(clippy::redundant_closure, clippy::unnecessary_filter_map)]
fn main() {
// yay
let c = |x| Some(x);
let _ = [1].iter().filter_map(c);
let _ = [1].iter().filter_map(Some);
// nay
let _ = [1].iter().flat_map(|_| &Some(1));
}