]> git.lizzy.rs Git - rust.git/blob - src/test/ui/for-loop-while/break-while-condition.stderr
Rollup merge of #97015 - nrc:read-buf-cursor, r=Mark-Simulacrum
[rust.git] / src / test / ui / for-loop-while / break-while-condition.stderr
1 error[E0308]: mismatched types
2   --> $DIR/break-while-condition.rs:9:20
3    |
4 LL |           let _: ! = {
5    |  ____________________^
6 LL | |             'a: while break 'a {};
7 LL | |         };
8    | |_________^ expected `!`, found `()`
9    |
10    = note:   expected type `!`
11            found unit type `()`
12
13 error[E0308]: mismatched types
14   --> $DIR/break-while-condition.rs:16:13
15    |
16 LL | /             while false {
17 LL | |                 break
18 LL | |             }
19    | |_____________^ expected `!`, found `()`
20    |
21    = note:   expected type `!`
22            found unit type `()`
23
24 error[E0308]: mismatched types
25   --> $DIR/break-while-condition.rs:24:13
26    |
27 LL | /             while false {
28 LL | |                 return
29 LL | |             }
30    | |_____________^ expected `!`, found `()`
31    |
32    = note:   expected type `!`
33            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
36    |
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, or consider changing the return type to account for that possibility
42
43 error: aborting due to 3 previous errors
44
45 For more information about this error, try `rustc --explain E0308`.