blob: bbc9f21edb06e8d3859302549bebae996badd179 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/break-while-condition.rs:7:20
|
LL | let _: ! = {
| ____________________^
LL | | 'a: while break 'a {};
LL | | };
| |_________^ expected `!`, found `()`
|
= note: expected type `!`
found unit type `()`
error[E0308]: mismatched types
--> $DIR/break-while-condition.rs:14:13
|
LL | / while false {
LL | | break
LL | | }
| |_____________^ expected `!`, found `()`
|
= note: expected type `!`
found unit type `()`
error[E0308]: mismatched types
--> $DIR/break-while-condition.rs:22:13
|
LL | / while false {
LL | | return
LL | | }
| |_____________^ expected `!`, found `()`
|
= note: expected type `!`
found unit type `()`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0308`.