]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/hygienic-label-3.stderr
Merge commit '3a31c6d8272c14388a34622193baf553636fe470' into sync_cg_clif-2021-07-07
[rust.git] / src / test / ui / hygiene / hygienic-label-3.stderr
1 error[E0426]: use of undeclared label `'x`
2   --> $DIR/hygienic-label-3.rs:2:19
3    |
4 LL |     () => { break 'x; }
5    |                   ^^ undeclared label `'x`
6 ...
7 LL |         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`.