2018-05-24 17:27:36 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/break-while-condition.rs:9:20
|
2018-05-24 17:27:36 -05:00
|
|
|
|
|
2018-05-25 09:31:13 -05:00
|
|
|
LL | let _: ! = { //~ ERROR mismatched types
|
|
|
|
| ____________________^
|
|
|
|
LL | | 'a: while break 'a {};
|
|
|
|
LL | | };
|
|
|
|
| |_________^ expected !, found ()
|
2018-05-24 17:27:36 -05:00
|
|
|
|
|
|
|
|
= note: expected type `!`
|
|
|
|
found type `()`
|
|
|
|
|
2018-05-25 09:31:13 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/break-while-condition.rs:16:13
|
2018-05-25 09:31:13 -05:00
|
|
|
|
|
2018-05-25 11:31:45 -05:00
|
|
|
LL | / while false { //~ ERROR mismatched types
|
2018-05-25 09:31:13 -05:00
|
|
|
LL | | break
|
|
|
|
LL | | }
|
|
|
|
| |_____________^ expected !, found ()
|
|
|
|
|
|
|
|
|
= note: expected type `!`
|
|
|
|
found type `()`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/break-while-condition.rs:24:13
|
2018-05-25 09:31:13 -05:00
|
|
|
|
|
2018-05-25 11:31:45 -05:00
|
|
|
LL | / while false { //~ ERROR mismatched types
|
2018-05-25 09:31:13 -05:00
|
|
|
LL | | return
|
|
|
|
LL | | }
|
|
|
|
| |_____________^ expected !, found ()
|
|
|
|
|
|
|
|
|
= note: expected type `!`
|
|
|
|
found type `()`
|
|
|
|
|
|
|
|
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`.
|