summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/iter_skip_next_unfixable.rs
blob: 6c98bdc8c88083556de206dd65d6fb37c539b373 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![warn(clippy::iter_skip_next)]
#![allow(dead_code, clippy::iter_out_of_bounds)]
//@no-rustfix
/// Checks implementation of `ITER_SKIP_NEXT` lint
fn main() {
    // fix #8128
    let test_string = "1|1 2";
    let sp = test_string.split('|').map(|s| s.trim());
    let _: Vec<&str> = sp.skip(1).next().unwrap().split(' ').collect();
    //~^ ERROR: called `skip(..).next()` on an iterator
    if let Some(s) = Some(test_string.split('|').map(|s| s.trim())) {
        let _: Vec<&str> = s.skip(1).next().unwrap().split(' ').collect();
        //~^ ERROR: called `skip(..).next()` on an iterator
    };
    fn check<T>(s: T)
    where
        T: Iterator<Item = String>,
    {
        let _: Vec<&str> = s.skip(1).next().unwrap().split(' ').collect();
        //~^ ERROR: called `skip(..).next()` on an iterator
    }
}