]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/hygienic-label-1.stderr
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
[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    |                   ^^ undeclared label `'x`
6 ...
7 LL |     'x: loop { foo!(); }
8    |                ------ in this macro invocation
9    |
10    = note: this error originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0426`.