2018-05-24 22:27:36 +00:00
|
|
|
error[E0308]: mismatched types
|
2019-12-11 14:51:28 +00:00
|
|
|
--> $DIR/break-while-condition.rs:9:20
|
2018-05-24 22:27:36 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _: ! = {
|
2018-05-25 14:31:13 +00:00
|
|
|
| ____________________^
|
|
|
|
LL | | 'a: while break 'a {};
|
|
|
|
LL | | };
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_________^ expected `!`, found `()`
|
2018-05-24 22:27:36 +00:00
|
|
|
|
|
2019-11-14 22:08:08 +00:00
|
|
|
= note: expected type `!`
|
|
|
|
found unit type `()`
|
2018-05-24 22:27:36 +00:00
|
|
|
|
2018-05-25 14:31:13 +00:00
|
|
|
error[E0308]: mismatched types
|
2019-12-11 14:51:28 +00:00
|
|
|
--> $DIR/break-while-condition.rs:16:13
|
2018-05-25 14:31:13 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | / while false {
|
2018-05-25 14:31:13 +00:00
|
|
|
LL | | break
|
|
|
|
LL | | }
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____________^ expected `!`, found `()`
|
2018-05-25 14:31:13 +00:00
|
|
|
|
|
2019-11-14 22:08:08 +00:00
|
|
|
= note: expected type `!`
|
|
|
|
found unit type `()`
|
2024-04-19 13:00:28 +00:00
|
|
|
= note: `while` loops evaluate to unit type `()`
|
|
|
|
help: consider adding a diverging expression here
|
|
|
|
|
|
|
|
|
LL ~ }
|
|
|
|
LL + /* `loop {}` or `panic!("...")` */
|
|
|
|
|
|
2018-05-25 14:31:13 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2019-12-11 14:51:28 +00:00
|
|
|
--> $DIR/break-while-condition.rs:24:13
|
2018-05-25 14:31:13 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | / while false {
|
2018-05-25 14:31:13 +00:00
|
|
|
LL | | return
|
|
|
|
LL | | }
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____________^ expected `!`, found `()`
|
2018-05-25 14:31:13 +00:00
|
|
|
|
|
2019-11-14 22:08:08 +00:00
|
|
|
= note: expected type `!`
|
|
|
|
found unit type `()`
|
2024-04-19 13:00:28 +00:00
|
|
|
= note: `while` loops evaluate to unit type `()`
|
|
|
|
help: consider adding a diverging expression here
|
|
|
|
|
|
|
|
|
LL ~ }
|
|
|
|
LL + /* `loop {}` or `panic!("...")` */
|
2022-08-03 04:46:07 +00:00
|
|
|
|
|
2018-05-25 14:31:13 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-05-24 22:27:36 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|