mirror of https://github.com/rust-lang/rust
28 lines
787 B
Plaintext
28 lines
787 B
Plaintext
error[E0268]: `break` outside of a loop or labeled block
|
|
--> $DIR/break-in-unlabeled-block.rs:4:9
|
|
|
|
|
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 ~ break 'block ();
|
|
|
|
|
|
|
error[E0268]: `break` outside of a loop or labeled block
|
|
--> $DIR/break-in-unlabeled-block.rs:8: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 ~ break 'block ();
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0268`.
|