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

28 lines
771 B
Plaintext
Raw Normal View History

error[E0268]: `break` outside of a 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;
| ^^^^^^^^^^ cannot `break` outside of a loop
2018-07-15 16:11:54 -05:00
error[E0268]: `break` outside of a 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 {};
| ^^^^^^^^ cannot `break` outside of a loop
2018-07-15 16:11:54 -05:00
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 ()
| |
2019-08-08 18:56:57 -05:00
| 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
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`.