]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/hygienic-label-1.stderr
Rollup merge of #58939 - taeguk:fix-doc-about-pin, r=rkruppe
[rust.git] / src / test / ui / hygiene / hygienic-label-1.stderr
1 error[E0426]: use of undeclared label `'x`
2   --> $DIR/hygienic-label-1.rs:2:19
3    |
4 LL |     () => { break 'x; }
5    |                   ^^ did you mean `'x`?
6 ...
7 LL |     'x: loop { foo!() }
8    |                ------ in this macro invocation
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0426`.