mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +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() { }
|