rust/src/test/ui/issues/issue-43162.stderr

31 lines
844 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0268]: `break` outside of loop
2018-12-25 09:56:47 -06:00
--> $DIR/issue-43162.rs:3:5
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | break true;
2018-07-15 16:11:54 -05:00
| ^^^^^^^^^^ cannot break outside of a loop
error[E0268]: `break` outside of loop
2018-12-25 09:56:47 -06:00
--> $DIR/issue-43162.rs:7:5
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | break {};
2018-07-15 16:11:54 -05:00
| ^^^^^^^^ cannot break outside of a loop
error[E0308]: mismatched types
--> $DIR/issue-43162.rs:1:13
2018-07-15 16:11:54 -05:00
|
LL | fn foo() -> bool {
2018-12-30 17:41:19 -06:00
| --- ^^^^ expected bool, found ()
| |
| this function implicitly returns `()` as its body has no tail or `return` expression
2019-03-09 06:03:44 -06:00
LL |
LL | break true;
| - help: consider removing this semicolon
2018-07-15 16:11:54 -05:00
|
= note: expected type `bool`
found type `()`
error: aborting due to 3 previous errors
Some errors have detailed explanations: E0268, E0308.
2018-07-15 16:11:54 -05:00
For more information about an error, try `rustc --explain E0268`.