]> git.lizzy.rs Git - rust.git/blob - tests/ui/for_loop.stderr
Merge #3400
[rust.git] / tests / ui / for_loop.stderr
1 error: the loop variable `i` is only used to index `vec`.
2   --> $DIR/for_loop.rs:38:14
3    |
4 38 |     for i in 0..vec.len() {
5    |              ^^^^^^^^^^^^
6    |
7    = note: `-D clippy::needless-range-loop` implied by `-D warnings`
8 help: consider using an iterator
9    |
10 38 |     for <item> in &vec {
11    |         ^^^^^^    ^^^^
12
13 error: the loop variable `i` is only used to index `vec`.
14   --> $DIR/for_loop.rs:47:14
15    |
16 47 |     for i in 0..vec.len() {
17    |              ^^^^^^^^^^^^
18 help: consider using an iterator
19    |
20 47 |     for <item> in &vec {
21    |         ^^^^^^    ^^^^
22
23 error: the loop variable `j` is only used to index `STATIC`.
24   --> $DIR/for_loop.rs:52:14
25    |
26 52 |     for j in 0..4 {
27    |              ^^^^
28 help: consider using an iterator
29    |
30 52 |     for <item> in &STATIC {
31    |         ^^^^^^    ^^^^^^^
32
33 error: the loop variable `j` is only used to index `CONST`.
34   --> $DIR/for_loop.rs:56:14
35    |
36 56 |     for j in 0..4 {
37    |              ^^^^
38 help: consider using an iterator
39    |
40 56 |     for <item> in &CONST {
41    |         ^^^^^^    ^^^^^^
42
43 error: the loop variable `i` is used to index `vec`
44   --> $DIR/for_loop.rs:60:14
45    |
46 60 |     for i in 0..vec.len() {
47    |              ^^^^^^^^^^^^
48 help: consider using an iterator
49    |
50 60 |     for (i, <item>) in vec.iter().enumerate() {
51    |         ^^^^^^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^
52
53 error: the loop variable `i` is only used to index `vec2`.
54   --> $DIR/for_loop.rs:68:14
55    |
56 68 |     for i in 0..vec.len() {
57    |              ^^^^^^^^^^^^
58 help: consider using an iterator
59    |
60 68 |     for <item> in vec2.iter().take(vec.len()) {
61    |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^
62
63 error: the loop variable `i` is only used to index `vec`.
64   --> $DIR/for_loop.rs:72:14
65    |
66 72 |     for i in 5..vec.len() {
67    |              ^^^^^^^^^^^^
68 help: consider using an iterator
69    |
70 72 |     for <item> in vec.iter().skip(5) {
71    |         ^^^^^^    ^^^^^^^^^^^^^^^^^^
72
73 error: the loop variable `i` is only used to index `vec`.
74   --> $DIR/for_loop.rs:76:14
75    |
76 76 |     for i in 0..MAX_LEN {
77    |              ^^^^^^^^^^
78 help: consider using an iterator
79    |
80 76 |     for <item> in vec.iter().take(MAX_LEN) {
81    |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^
82
83 error: the loop variable `i` is only used to index `vec`.
84   --> $DIR/for_loop.rs:80:14
85    |
86 80 |     for i in 0..=MAX_LEN {
87    |              ^^^^^^^^^^^
88 help: consider using an iterator
89    |
90 80 |     for <item> in vec.iter().take(MAX_LEN + 1) {
91    |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
92
93 error: the loop variable `i` is only used to index `vec`.
94   --> $DIR/for_loop.rs:84:14
95    |
96 84 |     for i in 5..10 {
97    |              ^^^^^
98 help: consider using an iterator
99    |
100 84 |     for <item> in vec.iter().take(10).skip(5) {
101    |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^
102
103 error: the loop variable `i` is only used to index `vec`.
104   --> $DIR/for_loop.rs:88:14
105    |
106 88 |     for i in 5..=10 {
107    |              ^^^^^^
108 help: consider using an iterator
109    |
110 88 |     for <item> in vec.iter().take(10 + 1).skip(5) {
111    |         ^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
112
113 error: the loop variable `i` is used to index `vec`
114   --> $DIR/for_loop.rs:92:14
115    |
116 92 |     for i in 5..vec.len() {
117    |              ^^^^^^^^^^^^
118 help: consider using an iterator
119    |
120 92 |     for (i, <item>) in vec.iter().enumerate().skip(5) {
121    |         ^^^^^^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
122
123 error: the loop variable `i` is used to index `vec`
124   --> $DIR/for_loop.rs:96:14
125    |
126 96 |     for i in 5..10 {
127    |              ^^^^^
128 help: consider using an iterator
129    |
130 96 |     for (i, <item>) in vec.iter().enumerate().take(10).skip(5) {
131    |         ^^^^^^^^^^^    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
132
133 error: this range is empty so this for loop will never run
134    --> $DIR/for_loop.rs:100:14
135     |
136 100 |     for i in 10..0 {
137     |              ^^^^^
138     |
139     = note: `-D clippy::reverse-range-loop` implied by `-D warnings`
140 help: consider using the following if you are attempting to iterate over this range in reverse
141     |
142 100 |     for i in (0..10).rev() {
143     |              ^^^^^^^^^^^^^
144
145 error: this range is empty so this for loop will never run
146    --> $DIR/for_loop.rs:104:14
147     |
148 104 |     for i in 10..=0 {
149     |              ^^^^^^
150 help: consider using the following if you are attempting to iterate over this range in reverse
151     |
152 104 |     for i in (0...10).rev() {
153     |              ^^^^^^^^^^^^^^
154
155 error: this range is empty so this for loop will never run
156    --> $DIR/for_loop.rs:108:14
157     |
158 108 |     for i in MAX_LEN..0 {
159     |              ^^^^^^^^^^
160 help: consider using the following if you are attempting to iterate over this range in reverse
161     |
162 108 |     for i in (0..MAX_LEN).rev() {
163     |              ^^^^^^^^^^^^^^^^^^
164
165 error: this range is empty so this for loop will never run
166    --> $DIR/for_loop.rs:112:14
167     |
168 112 |     for i in 5..5 {
169     |              ^^^^
170
171 error: this range is empty so this for loop will never run
172    --> $DIR/for_loop.rs:137:14
173     |
174 137 |     for i in 10..5 + 4 {
175     |              ^^^^^^^^^
176 help: consider using the following if you are attempting to iterate over this range in reverse
177     |
178 137 |     for i in (5 + 4..10).rev() {
179     |              ^^^^^^^^^^^^^^^^^
180
181 error: this range is empty so this for loop will never run
182    --> $DIR/for_loop.rs:141:14
183     |
184 141 |     for i in (5 + 2)..(3 - 1) {
185     |              ^^^^^^^^^^^^^^^^
186 help: consider using the following if you are attempting to iterate over this range in reverse
187     |
188 141 |     for i in ((3 - 1)..(5 + 2)).rev() {
189     |              ^^^^^^^^^^^^^^^^^^^^^^^^
190
191 error: this range is empty so this for loop will never run
192    --> $DIR/for_loop.rs:145:14
193     |
194 145 |     for i in (5 + 2)..(8 - 1) {
195     |              ^^^^^^^^^^^^^^^^
196
197 error: it is more concise to loop over references to containers instead of using explicit iteration methods
198    --> $DIR/for_loop.rs:167:15
199     |
200 167 |     for _v in vec.iter() {}
201     |               ^^^^^^^^^^ help: to write this more concisely, try: `&vec`
202     |
203     = note: `-D clippy::explicit-iter-loop` implied by `-D warnings`
204
205 error: it is more concise to loop over references to containers instead of using explicit iteration methods
206    --> $DIR/for_loop.rs:169:15
207     |
208 169 |     for _v in vec.iter_mut() {}
209     |               ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut vec`
210
211 error: it is more concise to loop over containers instead of using explicit iteration methods`
212    --> $DIR/for_loop.rs:172:15
213     |
214 172 |     for _v in out_vec.into_iter() {}
215     |               ^^^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `out_vec`
216     |
217     = note: `-D clippy::explicit-into-iter-loop` implied by `-D warnings`
218
219 error: it is more concise to loop over references to containers instead of using explicit iteration methods
220    --> $DIR/for_loop.rs:175:15
221     |
222 175 |     for _v in array.into_iter() {}
223     |               ^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `&array`
224
225 error: it is more concise to loop over references to containers instead of using explicit iteration methods
226    --> $DIR/for_loop.rs:180:15
227     |
228 180 |     for _v in [1, 2, 3].iter() {}
229     |               ^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[1, 2, 3]`
230
231 error: it is more concise to loop over references to containers instead of using explicit iteration methods
232    --> $DIR/for_loop.rs:184:15
233     |
234 184 |     for _v in [0; 32].iter() {}
235     |               ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[0; 32]`
236
237 error: it is more concise to loop over references to containers instead of using explicit iteration methods
238    --> $DIR/for_loop.rs:189:15
239     |
240 189 |     for _v in ll.iter() {}
241     |               ^^^^^^^^^ help: to write this more concisely, try: `&ll`
242
243 error: it is more concise to loop over references to containers instead of using explicit iteration methods
244    --> $DIR/for_loop.rs:192:15
245     |
246 192 |     for _v in vd.iter() {}
247     |               ^^^^^^^^^ help: to write this more concisely, try: `&vd`
248
249 error: it is more concise to loop over references to containers instead of using explicit iteration methods
250    --> $DIR/for_loop.rs:195:15
251     |
252 195 |     for _v in bh.iter() {}
253     |               ^^^^^^^^^ help: to write this more concisely, try: `&bh`
254
255 error: it is more concise to loop over references to containers instead of using explicit iteration methods
256    --> $DIR/for_loop.rs:198:15
257     |
258 198 |     for _v in hm.iter() {}
259     |               ^^^^^^^^^ help: to write this more concisely, try: `&hm`
260
261 error: it is more concise to loop over references to containers instead of using explicit iteration methods
262    --> $DIR/for_loop.rs:201:15
263     |
264 201 |     for _v in bt.iter() {}
265     |               ^^^^^^^^^ help: to write this more concisely, try: `&bt`
266
267 error: it is more concise to loop over references to containers instead of using explicit iteration methods
268    --> $DIR/for_loop.rs:204:15
269     |
270 204 |     for _v in hs.iter() {}
271     |               ^^^^^^^^^ help: to write this more concisely, try: `&hs`
272
273 error: it is more concise to loop over references to containers instead of using explicit iteration methods
274    --> $DIR/for_loop.rs:207:15
275     |
276 207 |     for _v in bs.iter() {}
277     |               ^^^^^^^^^ help: to write this more concisely, try: `&bs`
278
279 error: you are iterating over `Iterator::next()` which is an Option; this will compile but is probably not what you want
280    --> $DIR/for_loop.rs:209:15
281     |
282 209 |     for _v in vec.iter().next() {}
283     |               ^^^^^^^^^^^^^^^^^
284     |
285     = note: `-D clippy::iter-next-loop` implied by `-D warnings`
286
287 error: you are collect()ing an iterator and throwing away the result. Consider using an explicit for loop to exhaust the iterator
288    --> $DIR/for_loop.rs:216:5
289     |
290 216 |     vec.iter().cloned().map(|x| out.push(x)).collect::<Vec<_>>();
291     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
292     |
293     = note: `-D clippy::unused-collect` implied by `-D warnings`
294
295 error: you seem to want to iterate on a map's values
296    --> $DIR/for_loop.rs:325:19
297     |
298 325 |     for (_, v) in &m {
299     |                   ^^
300     |
301     = note: `-D clippy::for-kv-map` implied by `-D warnings`
302 help: use the corresponding method
303     |
304 325 |     for v in m.values() {
305     |         ^    ^^^^^^^^^^
306
307 error: you seem to want to iterate on a map's values
308    --> $DIR/for_loop.rs:330:19
309     |
310 330 |     for (_, v) in &*m {
311     |                   ^^^
312 help: use the corresponding method
313     |
314 330 |     for v in (*m).values() {
315     |         ^    ^^^^^^^^^^^^^
316
317 error: you seem to want to iterate on a map's values
318    --> $DIR/for_loop.rs:338:19
319     |
320 338 |     for (_, v) in &mut m {
321     |                   ^^^^^^
322 help: use the corresponding method
323     |
324 338 |     for v in m.values_mut() {
325     |         ^    ^^^^^^^^^^^^^^
326
327 error: you seem to want to iterate on a map's values
328    --> $DIR/for_loop.rs:343:19
329     |
330 343 |     for (_, v) in &mut *m {
331     |                   ^^^^^^^
332 help: use the corresponding method
333     |
334 343 |     for v in (*m).values_mut() {
335     |         ^    ^^^^^^^^^^^^^^^^^
336
337 error: you seem to want to iterate on a map's keys
338    --> $DIR/for_loop.rs:349:24
339     |
340 349 |     for (k, _value) in rm {
341     |                        ^^
342 help: use the corresponding method
343     |
344 349 |     for k in rm.keys() {
345     |         ^    ^^^^^^^^^
346
347 error: it looks like you're manually copying between slices
348    --> $DIR/for_loop.rs:402:14
349     |
350 402 |     for i in 0..src.len() {
351     |              ^^^^^^^^^^^^ help: try replacing the loop by: `dst[..src.len()].clone_from_slice(&src[..])`
352     |
353     = note: `-D clippy::manual-memcpy` implied by `-D warnings`
354
355 error: it looks like you're manually copying between slices
356    --> $DIR/for_loop.rs:407:14
357     |
358 407 |     for i in 0..src.len() {
359     |              ^^^^^^^^^^^^ help: try replacing the loop by: `dst[10..(src.len() + 10)].clone_from_slice(&src[..])`
360
361 error: it looks like you're manually copying between slices
362    --> $DIR/for_loop.rs:412:14
363     |
364 412 |     for i in 0..src.len() {
365     |              ^^^^^^^^^^^^ help: try replacing the loop by: `dst[..src.len()].clone_from_slice(&src[10..])`
366
367 error: it looks like you're manually copying between slices
368    --> $DIR/for_loop.rs:417:14
369     |
370 417 |     for i in 11..src.len() {
371     |              ^^^^^^^^^^^^^ help: try replacing the loop by: `dst[11..src.len()].clone_from_slice(&src[(11 - 10)..(src.len() - 10)])`
372
373 error: it looks like you're manually copying between slices
374    --> $DIR/for_loop.rs:422:14
375     |
376 422 |     for i in 0..dst.len() {
377     |              ^^^^^^^^^^^^ help: try replacing the loop by: `dst.clone_from_slice(&src[..dst.len()])`
378
379 error: it looks like you're manually copying between slices
380    --> $DIR/for_loop.rs:435:14
381     |
382 435 |     for i in 10..256 {
383     |              ^^^^^^^
384 help: try replacing the loop by
385     |
386 435 |     for i in dst[10..256].clone_from_slice(&src[(10 - 5)..(256 - 5)])
387 436 |     dst2[(10 + 500)..(256 + 500)].clone_from_slice(&src[10..256]) {
388     |
389
390 error: it looks like you're manually copying between slices
391    --> $DIR/for_loop.rs:447:14
392     |
393 447 |     for i in 10..LOOP_OFFSET {
394     |              ^^^^^^^^^^^^^^^ help: try replacing the loop by: `dst[(10 + LOOP_OFFSET)..(LOOP_OFFSET + LOOP_OFFSET)].clone_from_slice(&src[(10 - some_var)..(LOOP_OFFSET - some_var)])`
395
396 error: it looks like you're manually copying between slices
397    --> $DIR/for_loop.rs:460:14
398     |
399 460 |     for i in 0..src_vec.len() {
400     |              ^^^^^^^^^^^^^^^^ help: try replacing the loop by: `dst_vec[..src_vec.len()].clone_from_slice(&src_vec[..])`
401
402 error: it looks like you're manually copying between slices
403    --> $DIR/for_loop.rs:489:14
404     |
405 489 |     for i in from..from + src.len() {
406     |              ^^^^^^^^^^^^^^^^^^^^^^ help: try replacing the loop by: `dst[from..from + src.len()].clone_from_slice(&src[0..(from + src.len() - from)])`
407
408 error: it looks like you're manually copying between slices
409    --> $DIR/for_loop.rs:493:14
410     |
411 493 |     for i in from..from + 3 {
412     |              ^^^^^^^^^^^^^^ help: try replacing the loop by: `dst[from..from + 3].clone_from_slice(&src[0..(from + 3 - from)])`
413
414 error: it looks like you're manually copying between slices
415    --> $DIR/for_loop.rs:500:14
416     |
417 500 |     for i in 0..src.len() {
418     |              ^^^^^^^^^^^^ help: try replacing the loop by: `dst[..src.len()].clone_from_slice(&src[..])`
419
420 error: aborting due to 51 previous errors
421