2018-05-26 00:48:08 +00:00
|
|
|
error[E0426]: use of undeclared label `'L`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-50576.rs:2:23
|
2018-05-26 00:48:08 +00:00
|
|
|
|
|
|
|
|
LL | |bool: [u8; break 'L]| 0;
|
|
|
|
| ^^ undeclared label `'L`
|
|
|
|
|
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-50576.rs:2:17
|
2018-05-26 00:48:08 +00:00
|
|
|
|
|
|
|
|
LL | |bool: [u8; break 'L]| 0;
|
2022-11-05 01:11:50 +00:00
|
|
|
| ^^^^^^^^ cannot `break` outside of a loop or labeled block
|
2018-05-26 00:48:08 +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-50576.rs:5:16
|
2018-05-26 00:48:08 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | Vec::<[u8; break]>::new();
|
2022-11-05 01:11:50 +00:00
|
|
|
| ^^^^^ cannot `break` outside of a loop or labeled block
|
2018-05-26 00:48:08 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0268, E0426.
|
2018-05-26 00:48:08 +00:00
|
|
|
For more information about an error, try `rustc --explain E0268`.
|