]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/issue-73541-2.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / async-await / issue-73541-2.stderr
1 error[E0767]: use of unreachable label `'a`
2   --> $DIR/issue-73541-2.rs:7:26
3    |
4 LL |     'a: loop {
5    |     -- unreachable label defined here
6 ...
7 LL |                 continue 'a
8    |                          ^^ unreachable label `'a`
9 ...
10 LL |                 b!();
11    |                 ---- in this macro invocation
12    |
13    = note: labels are unreachable through functions, closures, async blocks and modules
14    = note: this error originates in the macro `b` (in Nightly builds, run with -Z macro-backtrace for more info)
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0767`.