about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/methods_unfixable.rs
blob: c19a769f79745b3ca016c579dfd99704506ce728 (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();
    //~^ filter_next
}