rust/src/test/ui/break-while-condition.stderr

38 lines
1.0 KiB
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/break-while-condition.rs:9:20
|
LL | let _: ! = { //~ ERROR mismatched types
| ____________________^
LL | | 'a: while break 'a {};
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:16:13
|
2018-05-25 11:31:45 -05:00
LL | / while false { //~ ERROR mismatched types
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 11:31:45 -05:00
LL | / while false { //~ ERROR mismatched types
LL | | return
LL | | }
| |_____________^ expected !, found ()
|
= note: expected type `!`
found type `()`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0308`.