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