Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-28109.rs
blob: 755a539b5003ea020d2f1215484f4b072ac4b3f6 [
file
] [
log
] [
blame
] [
edit
]
// Make sure that label for continue and break is spanned correctly
fn
main
()
{
loop
{
continue
'
b
//~ ERROR use of undeclared label
;
break
'
c
//~ ERROR use of undeclared label
;
}
}