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