summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/needless_splitn.fixed
blob: f6a4b2f17d33d81f048a1c828fe3bc2cfb744631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// run-rustfix
// edition:2018

#![feature(custom_inner_attributes)]
#![warn(clippy::needless_splitn)]
#![allow(clippy::iter_skip_next, clippy::iter_nth_zero, clippy::manual_split_once)]

extern crate itertools;

#[allow(unused_imports)]
use itertools::Itertools;

fn main() {
    let str = "key=value=end";
    let _ = str.split('=').next();
    let _ = str.split('=').nth(0);
    let _ = str.splitn(2, '=').nth(1);
    let (_, _) = str.splitn(2, '=').next_tuple().unwrap();
    let (_, _) = str.split('=').next_tuple().unwrap();
    let _: Vec<&str> = str.splitn(3, '=').collect();

    let _ = str.rsplit('=').next();
    let _ = str.rsplit('=').nth(0);
    let _ = str.rsplitn(2, '=').nth(1);
    let (_, _) = str.rsplitn(2, '=').next_tuple().unwrap();
    let (_, _) = str.rsplit('=').next_tuple().unwrap();
}