summaryrefslogtreecommitdiffstats
path: root/src/test/ui/deriving/derive-partialord-correctness.rs
blob: 36763eda169a99b97f7b83b5d4afc6425458570e (plain)
1
2
3
4
5
6
7
8
9
// run-pass
// Original issue: #49650

#[derive(PartialOrd, PartialEq)]
struct FloatWrapper(f64);

fn main() {
    assert!((0.0 / 0.0 >= 0.0) == (FloatWrapper(0.0 / 0.0) >= FloatWrapper(0.0)))
}