rust/tests/ui/deriving/derive-partialord-correctness.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
195 B
Rust
Raw Normal View History

// 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)))
}