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