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

29 lines
792 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
|
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
--> $DIR/issue-43162.rs:1:13
2018-07-15 16:11:54 -05:00
|
LL | fn foo() -> bool {
| ^^^^ expected bool, found ()
LL | //~^ ERROR E0308
LL | break true; //~ ERROR E0268
| - 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 occurred: E0268, E0308.
For more information about an error, try `rustc --explain E0268`.