mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
16 lines
420 B
Rust
16 lines
420 B
Rust
// Tests from for_loop.rs that don't have suggestions
|
|
|
|
#[warn(
|
|
clippy::needless_range_loop,
|
|
clippy::explicit_iter_loop,
|
|
clippy::explicit_into_iter_loop,
|
|
clippy::iter_next_loop,
|
|
clippy::for_kv_map
|
|
)]
|
|
#[allow(clippy::linkedlist, clippy::unnecessary_mut_passed, clippy::similar_names)]
|
|
#[allow(for_loops_over_fallibles)]
|
|
fn main() {
|
|
let vec = vec![1, 2, 3, 4];
|
|
|
|
for _v in vec.iter().next() {}
|
|
}
|