mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
376 B
Text
15 lines
376 B
Text
error[E0426]: use of undeclared label `'b`
|
|
--> $DIR/issue-28109.rs:6:9
|
|
|
|
|
LL | 'b
|
|
| ^^ undeclared label `'b`
|
|
|
|
error[E0426]: use of undeclared label `'c`
|
|
--> $DIR/issue-28109.rs:9:9
|
|
|
|
|
LL | 'c
|
|
| ^^ undeclared label `'c`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0426`.
|