rust-clippy/tests/ui/needless_range_loop.stderr

159 lines
4.4 KiB
Text
Raw Normal View History

error: the loop variable `i` is only used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:15:14
|
LL | for i in 0..vec.len() {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
2020-01-24 08:21:50 +00:00
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_range_loop)]`
help: consider using an iterator
|
LL | for <item> in &vec {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~
error: the loop variable `i` is only used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:26:14
|
LL | for i in 0..vec.len() {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in &vec {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~
error: the loop variable `j` is only used to index `STATIC`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:32:14
|
LL | for j in 0..4 {
| ^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in &STATIC {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~
error: the loop variable `j` is only used to index `CONST`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:37:14
|
LL | for j in 0..4 {
| ^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in &CONST {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~
error: the loop variable `i` is used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:42:14
|
LL | for i in 0..vec.len() {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator and enumerate()
|
LL | for (i, <item>) in vec.iter().enumerate() {
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is only used to index `vec2`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:51:14
|
LL | for i in 0..vec.len() {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in vec2.iter().take(vec.len()) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is only used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:56:14
|
LL | for i in 5..vec.len() {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in vec.iter().skip(5) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is only used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:61:14
|
LL | for i in 0..MAX_LEN {
| ^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in vec.iter().take(MAX_LEN) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is only used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:66:14
|
LL | for i in 0..=MAX_LEN {
| ^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in vec.iter().take(MAX_LEN + 1) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is only used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:71:14
|
LL | for i in 5..10 {
| ^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in vec.iter().take(10).skip(5) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is only used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:76:14
|
LL | for i in 5..=10 {
| ^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator
|
LL | for <item> in vec.iter().take(10 + 1).skip(5) {
2021-08-11 14:21:33 +00:00
| ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:81:14
|
LL | for i in 5..vec.len() {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator and enumerate()
|
LL | for (i, <item>) in vec.iter().enumerate().skip(5) {
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:86:14
|
LL | for i in 5..10 {
| ^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator and enumerate()
|
LL | for (i, <item>) in vec.iter().enumerate().take(10).skip(5) {
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: the loop variable `i` is used to index `vec`
2024-02-17 12:16:29 +00:00
--> tests/ui/needless_range_loop.rs:92:14
|
LL | for i in 0..vec.len() {
| ^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using an iterator and enumerate()
|
LL | for (i, <item>) in vec.iter_mut().enumerate() {
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~
2020-01-24 08:21:50 +00:00
error: aborting due to 14 previous errors
2018-01-16 16:06:27 +00:00