rust/tests/ui/unsafe/break-inside-unsafe-block-issue-128604.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2024-08-06 13:06:29 -05:00
error[E0268]: `break` outside of a loop or labeled block
--> $DIR/break-inside-unsafe-block-issue-128604.rs:2:28
|
LL | let a = ["_"; unsafe { break; 1 + 2 }];
| ^^^^^ cannot `break` outside of a loop or labeled block
error[E0268]: `break` outside of a loop or labeled block
--> $DIR/break-inside-unsafe-block-issue-128604.rs:14:9
2024-08-06 13:06:29 -05:00
|
LL | break;
| ^^^^^ cannot `break` outside of a loop or labeled block
2024-08-06 13:06:29 -05:00
error[E0268]: `break` outside of a loop or labeled block
--> $DIR/break-inside-unsafe-block-issue-128604.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 |
LL ~ break 'block;
|
error[E0268]: `break` outside of a loop or labeled block
--> $DIR/break-inside-unsafe-block-issue-128604.rs:21:13
2024-08-06 13:06:29 -05:00
|
LL | break;
| ^^^^^ cannot `break` outside of a loop or labeled block
2024-08-06 13:06:29 -05:00
|
help: consider labeling this block to be able to break within it
|
LL ~ 'block: {
LL |
LL | unsafe {
LL ~ break 'block;
2024-08-06 13:06:29 -05:00
|
error: aborting due to 4 previous errors
2024-08-06 13:06:29 -05:00
For more information about this error, try `rustc --explain E0268`.