mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
error[E0268]: `break` outside of a loop or labeled block
|
|
--> $DIR/break-inside-inline-const-issue-128604.rs:15:9
|
|
|
|
|
LL | break;
|
|
| ^^^^^ cannot `break` outside of a loop or labeled block
|
|
|
|
error[E0268]: `break` outside of a loop or labeled block
|
|
--> $DIR/break-inside-inline-const-issue-128604.rs:21:13
|
|
|
|
|
LL | break;
|
|
| ^^^^^ cannot `break` outside of a loop or labeled block
|
|
|
|
error[E0268]: `break` outside of a loop or labeled block
|
|
--> $DIR/break-inside-inline-const-issue-128604.rs:2:21
|
|
|
|
|
LL | let _ = ['a'; { break 2; 1 }];
|
|
| ^^^^^^^ cannot `break` outside of a loop or labeled block
|
|
|
|
|
help: consider labeling this block to be able to break within it
|
|
|
|
|
LL | let _ = ['a'; 'block: { break 'block 2; 1 }];
|
|
| +++++++ ++++++
|
|
|
|
error[E0268]: `break` outside of a loop or labeled block
|
|
--> $DIR/break-inside-inline-const-issue-128604.rs:9:13
|
|
|
|
|
LL | break;
|
|
| ^^^^^ cannot `break` outside of a loop or labeled block
|
|
|
|
|
help: consider labeling this block to be able to break within it
|
|
|
|
|
LL ~ 'block: {
|
|
LL |
|
|
LL ~ break 'block;
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0268`.
|