| error: usage of `.skip(0)` |
| --> tests/ui/iter_skip_zero.rs:11:35 |
| | |
| LL | let _ = [1, 2, 3].iter().skip(0); |
| | ^ help: if you meant to skip the first element, use: `1` |
| | |
| = note: this call to `skip` does nothing and is useless; remove it |
| = note: `-D clippy::iter-skip-zero` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::iter_skip_zero)]` |
| |
| error: usage of `.skip(0)` |
| --> tests/ui/iter_skip_zero.rs:13:39 |
| | |
| LL | let _ = vec![1, 2, 3].iter().skip(0); |
| | ^ help: if you meant to skip the first element, use: `1` |
| | |
| = note: this call to `skip` does nothing and is useless; remove it |
| |
| error: usage of `.skip(0)` |
| --> tests/ui/iter_skip_zero.rs:15:34 |
| | |
| LL | let _ = once([1, 2, 3]).skip(0); |
| | ^ help: if you meant to skip the first element, use: `1` |
| | |
| = note: this call to `skip` does nothing and is useless; remove it |
| |
| error: usage of `.skip(0)` |
| --> tests/ui/iter_skip_zero.rs:17:71 |
| | |
| LL | let _ = vec![1, 2, 3].iter().chain([1, 2, 3].iter().skip(0)).skip(0); |
| | ^ help: if you meant to skip the first element, use: `1` |
| | |
| = note: this call to `skip` does nothing and is useless; remove it |
| |
| error: usage of `.skip(0)` |
| --> tests/ui/iter_skip_zero.rs:17:62 |
| | |
| LL | let _ = vec![1, 2, 3].iter().chain([1, 2, 3].iter().skip(0)).skip(0); |
| | ^ help: if you meant to skip the first element, use: `1` |
| | |
| = note: this call to `skip` does nothing and is useless; remove it |
| |
| error: aborting due to 5 previous errors |
| |