rust/tests/ui/issues/issue-28109.stderr

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

16 lines
376 B
Plaintext
Raw Normal View History

2018-07-16 05:11:54 +08:00
error[E0426]: use of undeclared label `'b`
2018-12-25 23:56:47 +08:00
--> $DIR/issue-28109.rs:6:9
2018-07-16 05:11:54 +08:00
|
2019-03-09 20:03:44 +08:00
LL | 'b
2018-07-16 05:11:54 +08:00
| ^^ undeclared label `'b`
error[E0426]: use of undeclared label `'c`
2018-12-25 23:56:47 +08:00
--> $DIR/issue-28109.rs:9:9
2018-07-16 05:11:54 +08:00
|
2019-03-09 20:03:44 +08:00
LL | 'c
2018-07-16 05:11:54 +08:00
| ^^ undeclared label `'c`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0426`.