Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
bad-hex-float-lit.rs
blob: cd6fdbde96c0c2d5519485a7d1dba7f7fc35457f [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
_f
:
f32
=
0xAAf32
;
//~^ ERROR mismatched types
//~| HELP rewrite this
let
_f
:
f32
=
0xAB
_f32
;
//~^ ERROR mismatched types
//~| HELP rewrite this
let
_f
:
f64
=
0xFF
_f64
;
//~^ ERROR mismatched types
//~| HELP rewrite this
}