rust/src/test/ui/issues/issue-28109.stderr

16 lines
444 B
Plaintext
Raw Normal View History

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