mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
38 lines
1.1 KiB
Rust
38 lines
1.1 KiB
Rust
// run-rustfix
|
|
// aux-build:option_helpers.rs
|
|
|
|
#![warn(clippy::iter_skip_next)]
|
|
#![allow(clippy::blacklisted_name)]
|
|
#![allow(clippy::iter_nth)]
|
|
#![allow(unused_mut, dead_code)]
|
|
|
|
extern crate option_helpers;
|
|
|
|
use option_helpers::IteratorFalsePositives;
|
|
|
|
/// Checks implementation of `ITER_SKIP_NEXT` lint
|
|
fn main() {
|
|
let some_vec = vec![0, 1, 2, 3];
|
|
let _ = some_vec.iter().nth(42);
|
|
let _ = some_vec.iter().cycle().nth(42);
|
|
let _ = (1..10).nth(10);
|
|
let _ = &some_vec[..].iter().nth(3);
|
|
let foo = IteratorFalsePositives { foo: 0 };
|
|
let _ = foo.skip(42).next();
|
|
let _ = foo.filter().skip(42).next();
|
|
|
|
// fix #8128
|
|
let test_string = "1|1 2";
|
|
let mut sp = test_string.split('|').map(|s| s.trim());
|
|
let _: Vec<&str> = sp.nth(1).unwrap().split(' ').collect();
|
|
if let Some(mut s) = Some(test_string.split('|').map(|s| s.trim())) {
|
|
let _: Vec<&str> = s.nth(1).unwrap().split(' ').collect();
|
|
};
|
|
fn check<T>(mut s: T)
|
|
where
|
|
T: Iterator<Item = String>,
|
|
{
|
|
let _: Vec<&str> = s.nth(1).unwrap().split(' ').collect();
|
|
}
|
|
}
|