mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
13 lines
198 B
Rust
13 lines
198 B
Rust
//@ edition:2018
|
|
|
|
fn main() {
|
|
'a: loop {
|
|
async {
|
|
loop {
|
|
continue 'a
|
|
//~^ ERROR use of unreachable label `'a`
|
|
}
|
|
};
|
|
}
|
|
}
|