]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggest-labels.stderr
New upstream version 1.29.0+dfsg1
[rustc.git] / src / test / ui / suggest-labels.stderr
1 error[E0426]: use of undeclared label `'fo`
2 --> $DIR/suggest-labels.rs:14:15
3 |
4 LL | break 'fo; //~ ERROR use of undeclared label
5 | ^^^ did you mean `'foo`?
6
7 error[E0426]: use of undeclared label `'bor`
8 --> $DIR/suggest-labels.rs:18:18
9 |
10 LL | continue 'bor; //~ ERROR use of undeclared label
11 | ^^^^ did you mean `'bar`?
12
13 error[E0426]: use of undeclared label `'longlable`
14 --> $DIR/suggest-labels.rs:23:19
15 |
16 LL | break 'longlable; //~ ERROR use of undeclared label
17 | ^^^^^^^^^^ did you mean `'longlabel1`?
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0426`.