summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/methods_unfixable.rs
blob: 3d88ce4b6bbdc76975cb35063e5d0a0b440e4264 (plain)
1
2
3
4
5
6
7
8
9
10
#![warn(clippy::filter_next)]

fn main() {
    issue10029();
}

pub fn issue10029() {
    let iter = (0..10);
    let _ = iter.filter(|_| true).next();
}