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