]> git.lizzy.rs Git - rust.git/blob - tests/ui/for_loop.stderr
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / for_loop.stderr
1 error: the loop variable `i` is only used to index `vec`.
2   --> $DIR/for_loop.rs:50:14
3    |
4 50 |     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 50 |     for <item> in &vec {
11    |         ^^^^^^    ^^^^
12
13 error: the loop variable `i` is only used to index `vec`.
14   --> $DIR/for_loop.rs:59:14
15    |
16 59 |     for i in 0..vec.len() {
17    |              ^^^^^^^^^^^^
18 help: consider using an iterator
19    |
20 59 |     for <item> in &vec {
21    |         ^^^^^^    ^^^^
22
23 error: the loop variable `j` is only used to index `STATIC`.
24   --> $DIR/for_loop.rs:64:14
25    |
26 64 |     for j in 0..4 {
27    |              ^^^^
28 help: consider using an iterator
29    |
30 64 |     for <item> in &STATIC {
31    |         ^^^^^^    ^^^^^^^
32
33 error: the loop variable `j` is only used to index `CONST`.
34   --> $DIR/for_loop.rs:68:14
35    |
36 68 |     for j in 0..4 {
37    |              ^^^^
38 help: consider using an iterator
39    |
40 68 |     for <item> in &CONST {
41    |         ^^^^^^    ^^^^^^
42
43 error: the loop variable `i` is used to index `vec`
44   --> $DIR/for_loop.rs:72:14
45    |
46 72 |     for i in 0..vec.len() {
47    |              ^^^^^^^^^^^^
48 help: consider using an iterator
49    |
50 72 |     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:80:14
55    |
56 80 |     for i in 0..vec.len() {
57    |              ^^^^^^^^^^^^
58 help: consider using an iterator
59    |
60 80 |     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:84:14
65    |
66 84 |     for i in 5..vec.len() {
67    |              ^^^^^^^^^^^^
68 help: consider using an iterator
69    |
70 84 |     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:88:14
75    |
76 88 |     for i in 0..MAX_LEN {
77    |              ^^^^^^^^^^
78 help: consider using an iterator
79    |
80 88 |     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:92:14
85    |
86 92 |     for i in 0..=MAX_LEN {
87    |              ^^^^^^^^^^^
88 help: consider using an iterator
89    |
90 92 |     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:96:14
95    |
96 96 |     for i in 5..10 {
97    |              ^^^^^
98 help: consider using an iterator
99    |
100 96 |     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:100:14
105     |
106 100 |     for i in 5..=10 {
107     |              ^^^^^^
108 help: consider using an iterator
109     |
110 100 |     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:104:14
115     |
116 104 |     for i in 5..vec.len() {
117     |              ^^^^^^^^^^^^
118 help: consider using an iterator
119     |
120 104 |     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:108:14
125     |
126 108 |     for i in 5..10 {
127     |              ^^^^^
128 help: consider using an iterator
129     |
130 108 |     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:112:14
135     |
136 112 |     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 112 |     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:116:14
147     |
148 116 |     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 116 |     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:120:14
157     |
158 120 |     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 120 |     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:124:14
167     |
168 124 |     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:149:14
173     |
174 149 |     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 149 |     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:153:14
183     |
184 153 |     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 153 |     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:157:14
193     |
194 157 |     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:179:15
199     |
200 179 |     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:181:15
207     |
208 181 |     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:184:15
213     |
214 184 |     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:187:15
221     |
222 187 |     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:192:15
227     |
228 192 |     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:196:15
233     |
234 196 |     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:201:15
239     |
240 201 |     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:204:15
245     |
246 204 |     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:207:15
251     |
252 207 |     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:210:15
257     |
258 210 |     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:213:15
263     |
264 213 |     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:216:15
269     |
270 216 |     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:219:15
275     |
276 219 |     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:221:15
281     |
282 221 |     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:228:5
289     |
290 228 |     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:337:19
297     |
298 337 |     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 337 |     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:342:19
309     |
310 342 |     for (_, v) in &*m {
311     |                   ^^^
312 help: use the corresponding method
313     |
314 342 |     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:350:19
319     |
320 350 |     for (_, v) in &mut m {
321     |                   ^^^^^^
322 help: use the corresponding method
323     |
324 350 |     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:355:19
329     |
330 355 |     for (_, v) in &mut *m {
331     |                   ^^^^^^^
332 help: use the corresponding method
333     |
334 355 |     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:361:24
339     |
340 361 |     for (k, _value) in rm {
341     |                        ^^
342 help: use the corresponding method
343     |
344 361 |     for k in rm.keys() {
345     |         ^    ^^^^^^^^^
346
347 error: it looks like you're manually copying between slices
348    --> $DIR/for_loop.rs:414:14
349     |
350 414 |     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:419:14
357     |
358 419 |     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:424:14
363     |
364 424 |     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:429:14
369     |
370 429 |     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:434:14
375     |
376 434 |     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:447:14
381     |
382 447 |     for i in 10..256 {
383     |              ^^^^^^^
384 help: try replacing the loop by
385     |
386 447 |     for i in dst[10..256].clone_from_slice(&src[(10 - 5)..(256 - 5)])
387 448 |     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:459:14
392     |
393 459 |     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:472:14
398     |
399 472 |     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:501:14
404     |
405 501 |     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:505:14
410     |
411 505 |     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:512:14
416     |
417 512 |     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