about summary refs log tree commit diff
path: root/tests/ui/numbers-arithmetic/floatlits.rs
blob: 2dab2242011930bafc677fcc3ae463b6c1c5c3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ 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);
}