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

/// Checks implementation of `FILTER_NEXT` lint.
fn main() {
    let v = vec![3, 2, 1, 0, -1, -2, -3];

    // Single-line case.
    let _ = v.iter().filter(|&x| *x < 0).next();
}