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
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:8:5
|
2017-02-08 13:58:07 +00:00
8 | x == std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
|
= note: `-D cmp-nan` implied by `-D warnings`
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:9:5
|
2017-02-08 13:58:07 +00:00
9 | x != std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:10:5
|
2017-02-08 13:58:07 +00:00
10 | x < std::f32::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:11:5
|
2017-02-08 13:58:07 +00:00
11 | x > std::f32::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:12:5
|
2017-02-08 13:58:07 +00:00
12 | x <= std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:13:5
|
2017-02-08 13:58:07 +00:00
13 | x >= std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:16:5
|
2017-02-08 13:58:07 +00:00
16 | y == std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:17:5
|
2017-02-08 13:58:07 +00:00
17 | y != std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:18:5
|
2017-02-08 13:58:07 +00:00
18 | y < std::f64::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:19:5
|
2017-02-08 13:58:07 +00:00
19 | y > std::f64::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:20:5
|
2017-02-08 13:58:07 +00:00
20 | y <= std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2017-08-01 15:54:21 +00:00
--> $DIR/cmp_nan.rs:21:5
|
2017-02-08 13:58:07 +00:00
21 | y >= std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
2018-01-16 16:06:27 +00:00
error: aborting due to 12 previous errors