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