]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/issue-73541-1.rs
Rollup merge of #106854 - steffahn:drop_linear_arc_rebased, r=Mark-Simulacrum
[rust.git] / tests / ui / async-await / issue-73541-1.rs
1 // edition:2018
2
3 fn main() {
4     'a: loop {
5         async {
6             loop {
7                 continue 'a
8                 //~^ ERROR use of unreachable label `'a`
9             }
10         };
11     }
12 }