summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/needless_range_loop2.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/clippy/tests/ui/needless_range_loop2.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/needless_range_loop2.stderr')
-rw-r--r--src/tools/clippy/tests/ui/needless_range_loop2.stderr91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/needless_range_loop2.stderr b/src/tools/clippy/tests/ui/needless_range_loop2.stderr
new file mode 100644
index 000000000..1e6ec5e66
--- /dev/null
+++ b/src/tools/clippy/tests/ui/needless_range_loop2.stderr
@@ -0,0 +1,91 @@
+error: the loop variable `i` is only used to index `ns`
+ --> $DIR/needless_range_loop2.rs:10:14
+ |
+LL | for i in 3..10 {
+ | ^^^^^
+ |
+ = note: `-D clippy::needless-range-loop` implied by `-D warnings`
+help: consider using an iterator
+ |
+LL | for <item> in ns.iter().take(10).skip(3) {
+ | ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+error: the loop variable `i` is only used to index `ms`
+ --> $DIR/needless_range_loop2.rs:31:14
+ |
+LL | for i in 0..ms.len() {
+ | ^^^^^^^^^^^
+ |
+help: consider using an iterator
+ |
+LL | for <item> in &mut ms {
+ | ~~~~~~ ~~~~~~~
+
+error: the loop variable `i` is only used to index `ms`
+ --> $DIR/needless_range_loop2.rs:37:14
+ |
+LL | for i in 0..ms.len() {
+ | ^^^^^^^^^^^
+ |
+help: consider using an iterator
+ |
+LL | for <item> in &mut ms {
+ | ~~~~~~ ~~~~~~~
+
+error: the loop variable `i` is only used to index `vec`
+ --> $DIR/needless_range_loop2.rs:61:14
+ |
+LL | for i in x..x + 4 {
+ | ^^^^^^^^
+ |
+help: consider using an iterator
+ |
+LL | for <item> in vec.iter_mut().skip(x).take(4) {
+ | ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+error: the loop variable `i` is only used to index `vec`
+ --> $DIR/needless_range_loop2.rs:68:14
+ |
+LL | for i in x..=x + 4 {
+ | ^^^^^^^^^
+ |
+help: consider using an iterator
+ |
+LL | for <item> in vec.iter_mut().skip(x).take(4 + 1) {
+ | ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+error: the loop variable `i` is only used to index `arr`
+ --> $DIR/needless_range_loop2.rs:74:14
+ |
+LL | for i in 0..3 {
+ | ^^^^
+ |
+help: consider using an iterator
+ |
+LL | for <item> in &arr {
+ | ~~~~~~ ~~~~
+
+error: the loop variable `i` is only used to index `arr`
+ --> $DIR/needless_range_loop2.rs:78:14
+ |
+LL | for i in 0..2 {
+ | ^^^^
+ |
+help: consider using an iterator
+ |
+LL | for <item> in arr.iter().take(2) {
+ | ~~~~~~ ~~~~~~~~~~~~~~~~~~
+
+error: the loop variable `i` is only used to index `arr`
+ --> $DIR/needless_range_loop2.rs:82:14
+ |
+LL | for i in 1..3 {
+ | ^^^^
+ |
+help: consider using an iterator
+ |
+LL | for <item> in arr.iter().skip(1) {
+ | ~~~~~~ ~~~~~~~~~~~~~~~~~~
+
+error: aborting due to 8 previous errors
+