mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
409 B
Rust
23 lines
409 B
Rust
|
|
|
|
|
|
#[warn(cmp_nan)]
|
|
#[allow(float_cmp, no_effect, unnecessary_operation)]
|
|
fn main() {
|
|
let x = 5f32;
|
|
x == std::f32::NAN;
|
|
x != std::f32::NAN;
|
|
x < std::f32::NAN;
|
|
x > std::f32::NAN;
|
|
x <= std::f32::NAN;
|
|
x >= std::f32::NAN;
|
|
|
|
let y = 0f64;
|
|
y == std::f64::NAN;
|
|
y != std::f64::NAN;
|
|
y < std::f64::NAN;
|
|
y > std::f64::NAN;
|
|
y <= std::f64::NAN;
|
|
y >= std::f64::NAN;
|
|
}
|