Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
ui
/
integral-variable-unification-error.rs
blob: 5200b4a829db236f4298288cabf0f03bb13ea250 [
file
]
fn
main
()
{
let
mut
x
=
2
;
x
=
5.0
;
//~^ ERROR mismatched types
//~| expected integer, found floating-point number
}