rust/src/test/ui/issues/issue-73541-3.rs
David Wood cb541dc12c
resolve: disallow label use through closure/async
This commit modifies resolve to disallow `break`/`continue` to labels
through closures or async blocks. This doesn't make sense and should
have been prohibited anyway.

Signed-off-by: David Wood <david@davidtw.co>
2020-07-02 13:48:32 +01:00

10 lines
160 B
Rust

fn main() {
'aaaaab: loop {
|| {
loop { continue 'aaaaaa }
//~^ ERROR use of undeclared label `'aaaaaa`
};
}
}