Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
break-in-unlabeled-block.rs
blob: 1c952f4b5f4c1b6b9876e5ea8b3ed89767ffe517 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn
main
()
{
{
break
();
//~ ERROR `break` outside of a loop or labeled block
}
{
{
break
();
//~ ERROR `break` outside of a loop or labeled block
}
}
}