rust/src/test/ui/suggestions/suggest-labels.stderr

22 lines
726 B
Plaintext
Raw Normal View History

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
| ^^^ 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
| ^^^^ 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
| ^^^^^^^^^^ did you mean `'longlabel1`?
error: aborting due to 3 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0426"