summaryrefslogtreecommitdiffstats
path: root/tests/ui/numbers-arithmetic/apfloat-modulo-wrong.rs
blob: 64ff1f8b1d2df23e72a5747bb54eb1e5412dffa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass
// check-run-results
// regression test for issue #109567

fn f() -> f64 {
    std::hint::black_box(-1.0) % std::hint::black_box(-1.0)
}

const G: f64 = -1.0 % -1.0;

pub fn main() {
    assert_eq!(-1, G.signum() as i32);
    assert_eq!((-0.0_f64).to_bits(), G.to_bits());
    assert_eq!(f().signum(), G.signum());
}