cb541dc12c
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>
10 lines
160 B
Rust
10 lines
160 B
Rust
fn main() {
|
|
'aaaaab: loop {
|
|
|| {
|
|
loop { continue 'aaaaaa }
|
|
//~^ ERROR use of undeclared label `'aaaaaa`
|
|
};
|
|
|
|
}
|
|
}
|