Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
loops
/
loop-properly-diverging-2.rs
blob: 97b3972c135f1a566cba5aeefbd8be49846e0039 [
file
]
fn
forever2
()
->
i32
{
let
x
:
i32
=
loop
{
break
};
//~ ERROR mismatched types
x
}
fn
main
()
{}