rust-clippy/tests/ui/cmp_nan.stderr

77 lines
2 KiB
Text
Raw Normal View History

error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:14:5
2018-10-06 16:18:06 +00:00
|
2018-12-10 05:27:19 +00:00
14 | x == std::f32::NAN;
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::cmp-nan` implied by `-D warnings`
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:15:5
2018-10-06 16:18:06 +00:00
|
2018-12-10 05:27:19 +00:00
15 | x != std::f32::NAN;
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:16:5
|
2018-12-10 05:27:19 +00:00
16 | x < std::f32::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:17:5
|
2018-12-10 05:27:19 +00:00
17 | x > std::f32::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:18:5
|
2018-12-10 05:27:19 +00:00
18 | x <= std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:19:5
|
2018-12-10 05:27:19 +00:00
19 | x >= std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:22:5
|
2018-12-10 05:27:19 +00:00
22 | y == std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:23:5
|
2018-12-10 05:27:19 +00:00
23 | y != std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:24:5
|
2018-12-10 05:27:19 +00:00
24 | y < std::f64::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:25:5
|
2018-12-10 05:27:19 +00:00
25 | y > std::f64::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:26:5
|
2018-12-10 05:27:19 +00:00
26 | y <= std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 05:27:19 +00:00
--> $DIR/cmp_nan.rs:27:5
|
2018-12-10 05:27:19 +00:00
27 | y >= std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
2018-01-16 16:06:27 +00:00
error: aborting due to 12 previous errors