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