Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
issue-73541-2.rs
blob: 481bbbab72200364212c49adb780a1f54cb673a5 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
async
fn
c
()
{
'
a
:
loop
{
macro_rules
!
b
{
()
=>
{
continue
'
a
//~^ ERROR use of unreachable label `'a`
}
}
async
{
loop
{
b
!();
}
};
}
}
fn
main
()
{
}