2018-05-24 17:27:36 -05:00
error[E0308]: mismatched types
2019-12-11 08:51:28 -06:00
--> $DIR/break-while-condition.rs:9:20
2018-05-24 17:27:36 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _: ! = {
2018-05-25 09:31:13 -05:00
| ____________________^
LL | | 'a: while break 'a {};
LL | | };
2019-11-15 11:37:01 -06:00
| |_________^ expected `!`, found `()`
2018-05-24 17:27:36 -05:00
|
2019-11-14 16:08:08 -06:00
= note: expected type `!`
found unit type `()`
2018-05-24 17:27:36 -05:00
2018-05-25 09:31:13 -05:00
error[E0308]: mismatched types
2019-12-11 08:51:28 -06:00
--> $DIR/break-while-condition.rs:16:13
2018-05-25 09:31:13 -05:00
|
2019-03-09 06:03:44 -06:00
LL | / while false {
2018-05-25 09:31:13 -05:00
LL | | break
LL | | }
2019-11-15 11:37:01 -06:00
| |_____________^ expected `!`, found `()`
2018-05-25 09:31:13 -05:00
|
2019-11-14 16:08:08 -06:00
= note: expected type `!`
found unit type `()`
2018-05-25 09:31:13 -05:00
error[E0308]: mismatched types
2019-12-11 08:51:28 -06:00
--> $DIR/break-while-condition.rs:24:13
2018-05-25 09:31:13 -05:00
|
2019-03-09 06:03:44 -06:00
LL | / while false {
2018-05-25 09:31:13 -05:00
LL | | return
LL | | }
2019-11-15 11:37:01 -06:00
| |_____________^ expected `!`, found `()`
2018-05-25 09:31:13 -05:00
|
2019-11-14 16:08:08 -06:00
= note: expected type `!`
found unit type `()`
2022-08-02 23:46:07 -05:00
note: the function expects a value to always be returned, but loops might run zero times
--> $DIR/break-while-condition.rs:24:13
|
LL | while false {
| ^^^^^^^^^^^ this might have zero elements to iterate on
LL | return
| ------ if the loop doesn't execute, this value would never get returned
= 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
2018-05-25 09:31:13 -05:00
error: aborting due to 3 previous errors
2018-05-24 17:27:36 -05:00
For more information about this error, try `rustc --explain E0308`.