2022-11-05 01:11:50 +00:00
|
|
|
error[E0268]: `break` outside of a loop or labeled block
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-43162.rs:3:5
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | break true;
|
2022-11-05 01:11:50 +00:00
|
|
|
| ^^^^^^^^^^ cannot `break` outside of a loop or labeled block
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2022-11-05 01:11:50 +00:00
|
|
|
error[E0268]: `break` outside of a loop or labeled block
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-43162.rs:7:5
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | break {};
|
2022-11-05 01:11:50 +00:00
|
|
|
| ^^^^^^^^ cannot `break` outside of a loop or labeled block
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-30 13:55:00 -08:00
|
|
|
--> $DIR/issue-43162.rs:1:13
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2018-12-30 13:55:00 -08:00
|
|
|
LL | fn foo() -> bool {
|
2019-11-15 09:37:01 -08:00
|
|
|
| --- ^^^^ expected `bool`, found `()`
|
2018-12-30 15:41:19 -08:00
|
|
|
| |
|
2019-08-08 16:56:57 -07:00
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0268, E0308.
|
2018-07-15 14:11:54 -07:00
|
|
|
For more information about an error, try `rustc --explain E0268`.
|