Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
numbers-arithmetic
/
floatlits.rs
blob: 2dab2242011930bafc677fcc3ae463b6c1c5c3c3 [
file
] [
log
] [
blame
]
//@ run-pass
pub
fn
main
()
{
let
f
=
4.999999999999f64
;
assert
!(
f
>
4.90f64
);
assert
!(
f
<
5.0f64
);
let
g
=
4.90000000001e-10f64
;
assert
!(
g
>
5e-11f64
);
assert
!(
g
<
5e-9f64
);
}