@@ -98,6 +98,16 @@ LL | | }
98
98
| |_____^ expected `bool`, found `()`
99
99
|
100
100
= note: `for` loops evaluate to unit type `()`
101
+ note: It is determined that this might iterate zero times, regardless of the iterator expression.
102
+ --> $DIR/coerce-loop-issue-122561.rs:4:5
103
+ |
104
+ LL | for i in 0.. {
105
+ | ^^^^^^^^^^^^
106
+ help: If you are assuming that it will iterate at least once, consider using a `loop` expression instead.
107
+ --> $DIR/coerce-loop-issue-122561.rs:4:5
108
+ |
109
+ LL | for i in 0.. {
110
+ | ^^^^^^^^^^^^
101
111
help: consider returning a value here
102
112
|
103
113
LL ~ }
@@ -116,6 +126,16 @@ LL | | }
116
126
| |_____^ expected `String`, found `()`
117
127
|
118
128
= note: `for` loops evaluate to unit type `()`
129
+ note: It is determined that this might iterate zero times, regardless of the iterator expression.
130
+ --> $DIR/coerce-loop-issue-122561.rs:11:5
131
+ |
132
+ LL | for i in 0..5 {
133
+ | ^^^^^^^^^^^^^
134
+ help: If you are assuming that it will iterate at least once, consider using a `loop` expression instead.
135
+ --> $DIR/coerce-loop-issue-122561.rs:11:5
136
+ |
137
+ LL | for i in 0..5 {
138
+ | ^^^^^^^^^^^^^
119
139
help: consider returning a value here
120
140
|
121
141
LL ~ }
@@ -134,6 +154,16 @@ LL | | }
134
154
| |_____^ expected `bool`, found `()`
135
155
|
136
156
= note: `for` loops evaluate to unit type `()`
157
+ note: It is determined that this might iterate zero times, regardless of the iterator expression.
158
+ --> $DIR/coerce-loop-issue-122561.rs:18:5
159
+ |
160
+ LL | for i in 0..0 {
161
+ | ^^^^^^^^^^^^^
162
+ help: If you are assuming that it will iterate at least once, consider using a `loop` expression instead.
163
+ --> $DIR/coerce-loop-issue-122561.rs:18:5
164
+ |
165
+ LL | for i in 0..0 {
166
+ | ^^^^^^^^^^^^^
137
167
help: consider returning a value here
138
168
|
139
169
LL ~ }
@@ -168,6 +198,16 @@ LL | fn for_single_line() -> bool { for i in 0.. { return false; } }
168
198
| expected `bool` because of return type
169
199
|
170
200
= note: `for` loops evaluate to unit type `()`
201
+ note: It is determined that this might iterate zero times, regardless of the iterator expression.
202
+ --> $DIR/coerce-loop-issue-122561.rs:33:32
203
+ |
204
+ LL | fn for_single_line() -> bool { for i in 0.. { return false; } }
205
+ | ^^^^^^^^^^^^
206
+ help: If you are assuming that it will iterate at least once, consider using a `loop` expression instead.
207
+ --> $DIR/coerce-loop-issue-122561.rs:33:32
208
+ |
209
+ LL | fn for_single_line() -> bool { for i in 0.. { return false; } }
210
+ | ^^^^^^^^^^^^
171
211
help: consider returning a value here
172
212
|
173
213
LL | fn for_single_line() -> bool { for i in 0.. { return false; } /* `bool` value */ }
@@ -186,6 +226,16 @@ LL | | }
186
226
| |_____^ expected `bool`, found `()`
187
227
|
188
228
= note: `while` loops evaluate to unit type `()`
229
+ note: It is determined that this might iterate zero times, regardless of the loop condition expression or pattern.
230
+ --> $DIR/coerce-loop-issue-122561.rs:48:5
231
+ |
232
+ LL | while true {
233
+ | ^^^^^^^^^^
234
+ help: If you are assuming that it will iterate at least once, consider using a `loop` expression instead.
235
+ --> $DIR/coerce-loop-issue-122561.rs:48:5
236
+ |
237
+ LL | while true {
238
+ | ^^^^^^^^^^
189
239
help: consider returning a value here
190
240
|
191
241
LL ~ }
@@ -206,6 +256,16 @@ LL | | }
206
256
| |_____^ expected `bool`, found `()`
207
257
|
208
258
= note: `while` loops evaluate to unit type `()`
259
+ note: It is determined that this might iterate zero times, regardless of the loop condition expression or pattern.
260
+ --> $DIR/coerce-loop-issue-122561.rs:57:5
261
+ |
262
+ LL | while i < 3 {
263
+ | ^^^^^^^^^^^
264
+ help: If you are assuming that it will iterate at least once, consider using a `loop` expression instead.
265
+ --> $DIR/coerce-loop-issue-122561.rs:57:5
266
+ |
267
+ LL | while i < 3 {
268
+ | ^^^^^^^^^^^
209
269
help: consider returning a value here
210
270
|
211
271
LL ~ }
@@ -224,6 +284,16 @@ LL | | }
224
284
| |_____^ expected `bool`, found `()`
225
285
|
226
286
= note: `while` loops evaluate to unit type `()`
287
+ note: It is determined that this might iterate zero times, regardless of the loop condition expression or pattern.
288
+ --> $DIR/coerce-loop-issue-122561.rs:65:5
289
+ |
290
+ LL | while false {
291
+ | ^^^^^^^^^^^
292
+ help: If you are assuming that it will iterate at least once, consider using a `loop` expression instead.
293
+ --> $DIR/coerce-loop-issue-122561.rs:65:5
294
+ |
295
+ LL | while false {
296
+ | ^^^^^^^^^^^
227
297
help: consider returning a value here
228
298
|
229
299
LL ~ }
0 commit comments