1
1
error: this range is empty so this for loop will never run
2
- --> $DIR/for_loop.rs:40 :14
2
+ --> $DIR/for_loop.rs:39 :14
3
3
|
4
4
LL | for i in 10..0 {
5
5
| ^^^^^
@@ -11,7 +11,7 @@ LL | for i in (0..10).rev() {
11
11
| ^^^^^^^^^^^^^
12
12
13
13
error: this range is empty so this for loop will never run
14
- --> $DIR/for_loop.rs:44 :14
14
+ --> $DIR/for_loop.rs:43 :14
15
15
|
16
16
LL | for i in 10..=0 {
17
17
| ^^^^^^
@@ -21,7 +21,7 @@ LL | for i in (0...10).rev() {
21
21
| ^^^^^^^^^^^^^^
22
22
23
23
error: this range is empty so this for loop will never run
24
- --> $DIR/for_loop.rs:48 :14
24
+ --> $DIR/for_loop.rs:47 :14
25
25
|
26
26
LL | for i in MAX_LEN..0 {
27
27
| ^^^^^^^^^^
@@ -31,13 +31,13 @@ LL | for i in (0..MAX_LEN).rev() {
31
31
| ^^^^^^^^^^^^^^^^^^
32
32
33
33
error: this range is empty so this for loop will never run
34
- --> $DIR/for_loop.rs:52 :14
34
+ --> $DIR/for_loop.rs:51 :14
35
35
|
36
36
LL | for i in 5..5 {
37
37
| ^^^^
38
38
39
39
error: this range is empty so this for loop will never run
40
- --> $DIR/for_loop.rs:77 :14
40
+ --> $DIR/for_loop.rs:76 :14
41
41
|
42
42
LL | for i in 10..5 + 4 {
43
43
| ^^^^^^^^^
@@ -47,7 +47,7 @@ LL | for i in (5 + 4..10).rev() {
47
47
| ^^^^^^^^^^^^^^^^^
48
48
49
49
error: this range is empty so this for loop will never run
50
- --> $DIR/for_loop.rs:81 :14
50
+ --> $DIR/for_loop.rs:80 :14
51
51
|
52
52
LL | for i in (5 + 2)..(3 - 1) {
53
53
| ^^^^^^^^^^^^^^^^
@@ -57,108 +57,100 @@ LL | for i in ((3 - 1)..(5 + 2)).rev() {
57
57
| ^^^^^^^^^^^^^^^^^^^^^^^^
58
58
59
59
error: this range is empty so this for loop will never run
60
- --> $DIR/for_loop.rs:85 :14
60
+ --> $DIR/for_loop.rs:84 :14
61
61
|
62
62
LL | for i in (5 + 2)..(8 - 1) {
63
63
| ^^^^^^^^^^^^^^^^
64
64
65
65
error: it is more concise to loop over references to containers instead of using explicit iteration methods
66
- --> $DIR/for_loop.rs:107 :15
66
+ --> $DIR/for_loop.rs:106 :15
67
67
|
68
68
LL | for _v in vec.iter() {}
69
69
| ^^^^^^^^^^ help: to write this more concisely, try: `&vec`
70
70
|
71
71
= note: `-D clippy::explicit-iter-loop` implied by `-D warnings`
72
72
73
73
error: it is more concise to loop over references to containers instead of using explicit iteration methods
74
- --> $DIR/for_loop.rs:109 :15
74
+ --> $DIR/for_loop.rs:108 :15
75
75
|
76
76
LL | for _v in vec.iter_mut() {}
77
77
| ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut vec`
78
78
79
79
error: it is more concise to loop over containers instead of using explicit iteration methods`
80
- --> $DIR/for_loop.rs:112 :15
80
+ --> $DIR/for_loop.rs:111 :15
81
81
|
82
82
LL | for _v in out_vec.into_iter() {}
83
83
| ^^^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `out_vec`
84
84
|
85
85
= note: `-D clippy::explicit-into-iter-loop` implied by `-D warnings`
86
86
87
87
error: it is more concise to loop over references to containers instead of using explicit iteration methods
88
- --> $DIR/for_loop.rs:115 :15
88
+ --> $DIR/for_loop.rs:114 :15
89
89
|
90
90
LL | for _v in array.into_iter() {}
91
91
| ^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `&array`
92
92
93
93
error: it is more concise to loop over references to containers instead of using explicit iteration methods
94
- --> $DIR/for_loop.rs:120 :15
94
+ --> $DIR/for_loop.rs:119 :15
95
95
|
96
96
LL | for _v in [1, 2, 3].iter() {}
97
97
| ^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[1, 2, 3]`
98
98
99
99
error: it is more concise to loop over references to containers instead of using explicit iteration methods
100
- --> $DIR/for_loop.rs:124 :15
100
+ --> $DIR/for_loop.rs:123 :15
101
101
|
102
102
LL | for _v in [0; 32].iter() {}
103
103
| ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[0; 32]`
104
104
105
105
error: it is more concise to loop over references to containers instead of using explicit iteration methods
106
- --> $DIR/for_loop.rs:129 :15
106
+ --> $DIR/for_loop.rs:128 :15
107
107
|
108
108
LL | for _v in ll.iter() {}
109
109
| ^^^^^^^^^ help: to write this more concisely, try: `&ll`
110
110
111
111
error: it is more concise to loop over references to containers instead of using explicit iteration methods
112
- --> $DIR/for_loop.rs:132 :15
112
+ --> $DIR/for_loop.rs:131 :15
113
113
|
114
114
LL | for _v in vd.iter() {}
115
115
| ^^^^^^^^^ help: to write this more concisely, try: `&vd`
116
116
117
117
error: it is more concise to loop over references to containers instead of using explicit iteration methods
118
- --> $DIR/for_loop.rs:135 :15
118
+ --> $DIR/for_loop.rs:134 :15
119
119
|
120
120
LL | for _v in bh.iter() {}
121
121
| ^^^^^^^^^ help: to write this more concisely, try: `&bh`
122
122
123
123
error: it is more concise to loop over references to containers instead of using explicit iteration methods
124
- --> $DIR/for_loop.rs:138 :15
124
+ --> $DIR/for_loop.rs:137 :15
125
125
|
126
126
LL | for _v in hm.iter() {}
127
127
| ^^^^^^^^^ help: to write this more concisely, try: `&hm`
128
128
129
129
error: it is more concise to loop over references to containers instead of using explicit iteration methods
130
- --> $DIR/for_loop.rs:141 :15
130
+ --> $DIR/for_loop.rs:140 :15
131
131
|
132
132
LL | for _v in bt.iter() {}
133
133
| ^^^^^^^^^ help: to write this more concisely, try: `&bt`
134
134
135
135
error: it is more concise to loop over references to containers instead of using explicit iteration methods
136
- --> $DIR/for_loop.rs:144 :15
136
+ --> $DIR/for_loop.rs:143 :15
137
137
|
138
138
LL | for _v in hs.iter() {}
139
139
| ^^^^^^^^^ help: to write this more concisely, try: `&hs`
140
140
141
141
error: it is more concise to loop over references to containers instead of using explicit iteration methods
142
- --> $DIR/for_loop.rs:147 :15
142
+ --> $DIR/for_loop.rs:146 :15
143
143
|
144
144
LL | for _v in bs.iter() {}
145
145
| ^^^^^^^^^ help: to write this more concisely, try: `&bs`
146
146
147
147
error: you are iterating over `Iterator::next()` which is an Option; this will compile but is probably not what you want
148
- --> $DIR/for_loop.rs:149 :15
148
+ --> $DIR/for_loop.rs:148 :15
149
149
|
150
150
LL | for _v in vec.iter().next() {}
151
151
| ^^^^^^^^^^^^^^^^^
152
152
|
153
153
= note: `-D clippy::iter-next-loop` implied by `-D warnings`
154
154
155
- error: you are collect()ing an iterator and throwing away the result. Consider using an explicit for loop to exhaust the iterator
156
- --> $DIR/for_loop.rs:156:5
157
- |
158
- LL | vec.iter().cloned().map(|x| out.push(x)).collect::<Vec<_>>();
159
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
160
- |
161
- = note: `-D clippy::unused-collect` implied by `-D warnings`
162
-
163
- error: aborting due to 22 previous errors
155
+ error: aborting due to 21 previous errors
164
156
0 commit comments