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
|
|
|
|
|
|
|
|
LL | break true; //~ ERROR E0268
|
|
|
|
| ^^^^^^^^^^ 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
|
|
|
|
|
|
|
|
LL | break {}; //~ ERROR E0268
|
|
|
|
| ^^^^^^^^ cannot break outside of a loop
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-43162.rs:1:18
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | fn foo() -> bool {
|
|
|
|
| __________________^
|
|
|
|
LL | | //~^ ERROR E0308
|
|
|
|
LL | | break true; //~ ERROR E0268
|
|
|
|
| | - help: consider removing this semicolon
|
|
|
|
LL | | }
|
|
|
|
| |_^ expected bool, found ()
|
|
|
|
|
|
|
|
|
= note: expected type `bool`
|
|
|
|
found type `()`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
Some errors occurred: E0268, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0268`.
|