2021-05-30 13:35:06 +00:00
|
|
|
#![warn(clippy::suspicious_splitn)]
|
2021-10-29 03:32:37 +00:00
|
|
|
#![allow(clippy::needless_splitn)]
|
2021-05-30 13:35:06 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = "a,b,c".splitn(3, ',');
|
|
|
|
let _ = [0, 1, 2, 1, 3].splitn(3, |&x| x == 1);
|
|
|
|
let _ = "".splitn(0, ',');
|
|
|
|
let _ = [].splitn(0, |&x: &u32| x == 1);
|
|
|
|
|
|
|
|
let _ = "a,b".splitn(0, ',');
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `splitn` called with `0` splits
|
|
|
|
//~| NOTE: the resulting iterator will always return `None`
|
2021-05-30 13:35:06 +00:00
|
|
|
let _ = "a,b".rsplitn(0, ',');
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `rsplitn` called with `0` splits
|
|
|
|
//~| NOTE: the resulting iterator will always return `None`
|
2021-05-30 13:35:06 +00:00
|
|
|
let _ = "a,b".splitn(1, ',');
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `splitn` called with `1` split
|
|
|
|
//~| NOTE: the resulting iterator will always return the entire string followed by `No
|
2021-05-30 13:35:06 +00:00
|
|
|
let _ = [0, 1, 2].splitn(0, |&x| x == 1);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `splitn` called with `0` splits
|
|
|
|
//~| NOTE: the resulting iterator will always return `None`
|
2021-05-30 13:35:06 +00:00
|
|
|
let _ = [0, 1, 2].splitn_mut(0, |&x| x == 1);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `splitn_mut` called with `0` splits
|
|
|
|
//~| NOTE: the resulting iterator will always return `None`
|
2021-05-30 13:35:06 +00:00
|
|
|
let _ = [0, 1, 2].splitn(1, |&x| x == 1);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `splitn` called with `1` split
|
|
|
|
//~| NOTE: the resulting iterator will always return the entire slice followed by `Non
|
2021-05-30 13:35:06 +00:00
|
|
|
let _ = [0, 1, 2].rsplitn_mut(1, |&x| x == 1);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `rsplitn_mut` called with `1` split
|
|
|
|
//~| NOTE: the resulting iterator will always return the entire slice followed by `Non
|
2021-05-30 17:25:24 +00:00
|
|
|
|
|
|
|
const X: usize = 0;
|
|
|
|
let _ = "a,b".splitn(X + 1, ',');
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `splitn` called with `1` split
|
|
|
|
//~| NOTE: the resulting iterator will always return the entire string followed by `No
|
2021-05-30 17:25:24 +00:00
|
|
|
let _ = "a,b".splitn(X, ',');
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `splitn` called with `0` splits
|
|
|
|
//~| NOTE: the resulting iterator will always return `None`
|
2021-05-30 13:35:06 +00:00
|
|
|
}
|