2017-10-09 17:21:09 -05:00
|
|
|
error[E0426]: use of undeclared label `'fo`
|
|
|
|
--> $DIR/suggest-labels.rs:14:15
|
|
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
14 | break 'fo; //~ ERROR use of undeclared label
|
2017-10-09 17:21:09 -05:00
|
|
|
| ^^^ did you mean `'foo`?
|
|
|
|
|
|
|
|
error[E0426]: use of undeclared label `'bor`
|
|
|
|
--> $DIR/suggest-labels.rs:18:18
|
|
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
18 | continue 'bor; //~ ERROR use of undeclared label
|
2017-10-09 17:21:09 -05:00
|
|
|
| ^^^^ did you mean `'bar`?
|
|
|
|
|
|
|
|
error[E0426]: use of undeclared label `'longlable`
|
|
|
|
--> $DIR/suggest-labels.rs:23:19
|
|
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
23 | break 'longlable; //~ ERROR use of undeclared label
|
2017-10-09 17:21:09 -05:00
|
|
|
| ^^^^^^^^^^ did you mean `'longlabel1`?
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|