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>
9 lines
146 B
Rust
9 lines
146 B
Rust
fn main() {
|
|
'a: loop {
|
|
|| {
|
|
loop { continue 'a }
|
|
//~^ ERROR use of unreachable label `'a`
|
|
};
|
|
|
|
}
|
|
}
|