]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/issue-73541-2.rs
Rollup merge of #107065 - flip1995:clippyup, r=Manishearth
[rust.git] / tests / ui / async-await / issue-73541-2.rs
1 // edition:2018
2
3 async fn c() {
4     'a: loop {
5         macro_rules! b {
6             () => {
7                 continue 'a
8                 //~^ ERROR use of unreachable label `'a`
9             }
10         }
11
12         async {
13             loop {
14                 b!();
15             }
16         };
17     }
18 }
19
20 fn main() { }