mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
307 B
Rust
21 lines
307 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() { }
|