]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/issue-73541.rs
Rollup merge of #107114 - Erk-:add-absolute-note-to-path-join, r=m-ou-se
[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 }