You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of rust-lang#123125 - gurry:122561-bad-note-non-zero-loop-iters-2, r=estebank
Remove suggestion about iteration count in coerce
Fixesrust-lang#122561
The iteration count-centric suggestion was implemented in PR rust-lang#100094, but it was based on the wrong assumption that the type mismatch error depends on the number of times the loop iterates. As it turns out, that is not true (see this comment for details: rust-lang#122679 (comment))
This PR attempts to remedy the situation by changing the suggestion from the one centered on iteration count to a simple suggestion to add a return value.
It should also fixrust-lang#100285 by simply making it redundant.
Copy file name to clipboardexpand all lines: tests/ui/for-loop-while/break-while-condition.stderr
+11-7
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,12 @@ LL | | }
20
20
|
21
21
= note: expected type `!`
22
22
found unit type `()`
23
+
= note: `while` loops evaluate to unit type `()`
24
+
help: consider adding a diverging expression here
25
+
|
26
+
LL ~ }
27
+
LL + /* `loop {}` or `panic!("...")` */
28
+
|
23
29
24
30
error[E0308]: mismatched types
25
31
--> $DIR/break-while-condition.rs:24:13
@@ -31,14 +37,12 @@ LL | | }
31
37
|
32
38
= note: expected type `!`
33
39
found unit type `()`
34
-
note: the function expects a value to always be returned, but loops might run zero times
35
-
--> $DIR/break-while-condition.rs:24:13
40
+
= note: `while` loops evaluate to unit type `()`
41
+
help: consider adding a diverging expression here
42
+
|
43
+
LL ~ }
44
+
LL + /* `loop {}` or `panic!("...")` */
36
45
|
37
-
LL | while false {
38
-
| ^^^^^^^^^^^ this might have zero elements to iterate on
39
-
LL | return
40
-
| ------ if the loop doesn't execute, this value would never get returned
41
-
= help: return a value for the case when the loop has zero elements to iterate on, otherwise consider changing the return type to account for that possibility
0 commit comments