blob: 36763eda169a99b97f7b83b5d4afc6425458570e [file] [log] [blame]
// 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)))
}