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