summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/methods_unfixable.rs
blob: ee59983a7573e21e8215e49b0246a06ee5f4a6f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![warn(clippy::filter_next)]
//@no-rustfix
fn main() {
    issue10029();
}

pub fn issue10029() {
    let iter = (0..10);
    let _ = iter.filter(|_| true).next();
    //~^ ERROR: called `filter(..).next()` on an `Iterator`. This is more succinctly expre
}