d08b443fff
This reverts commit aa25f22f19
. It broke stage2, not sure why yet.
9 lines
162 B
Rust
9 lines
162 B
Rust
// xfail-boot
|
|
fn main() {
|
|
auto f = 4.999999999999;
|
|
check (f > 4.90);
|
|
check (f < 5.0);
|
|
auto g = 4.90000000001e-10;
|
|
check(g > 5e-11);
|
|
check(g < 5e-9);
|
|
} |