]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/suggest-labels.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / suggestions / 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`.