Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
error-codes
/
E0767.rs
blob: 14215d36a3833ce8f2874609c3cb5e7c3ed9dae9 [
file
] [
log
] [
blame
]
fn
main
()
{
'
a
:
loop
{
||
{
//~^ ERROR mismatched types
loop
{
break
'
a
;
}
//~ ERROR E0767
}
}
}