summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/flat_map_option.rs
blob: 2479abddbf04e49c167c908bc19c1bf8ca05be44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-rustfix
#![warn(clippy::flat_map_option)]
#![allow(clippy::redundant_closure, clippy::unnecessary_filter_map)]

fn main() {
    // yay
    let c = |x| Some(x);
    let _ = [1].iter().flat_map(c);
    let _ = [1].iter().flat_map(Some);

    // nay
    let _ = [1].iter().flat_map(|_| &Some(1));
}