]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/issue-73541.rs
Rollup merge of #106836 - ibraheemdev:sync-sender-spin, r=Amanieu
[rust.git] / tests / ui / async-await / issue-73541.rs
1 fn main() {
2     'a: loop {
3         || {
4             loop { continue 'a }
5             //~^ ERROR use of unreachable label `'a`
6         };
7
8     }
9 }