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>
7 lines
106 B
Rust
7 lines
106 B
Rust
fn main () {
|
|
'a: loop {
|
|
|| {
|
|
loop { break 'a; } //~ ERROR E0767
|
|
}
|
|
}
|
|
}
|