Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
suggestions
/
bad-hex-float-lit.rs
blob: cd6fdbde96c0c2d5519485a7d1dba7f7fc35457f [
file
] [
log
] [
blame
]
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
}