mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:19:00 +00:00
21 lines
308 B
Rust
21 lines
308 B
Rust
//@ edition:2018
|
|
|
|
async fn c() {
|
|
'a: loop {
|
|
macro_rules! b {
|
|
() => {
|
|
continue 'a
|
|
//~^ ERROR use of unreachable label `'a`
|
|
}
|
|
}
|
|
|
|
async {
|
|
loop {
|
|
b!();
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
fn main() { }
|