summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/issue-73541.rs
blob: 399a07cd3fcc893041158c34e703894ac1709d02 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    'a: loop {
        || {
            loop { continue 'a }
            //~^ ERROR use of unreachable label `'a`
        };

    }
}