rust/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 06:27:19 +01:00
--> $DIR/cmp_nan.rs:14:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | x == std::f32::NAN;
2018-10-06 18:18:06 +02: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 06:27:19 +01:00
--> $DIR/cmp_nan.rs:15:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | x != std::f32::NAN;
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:16:5
|
2018-12-27 16:57:55 +01:00
LL | x < std::f32::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:17:5
|
2018-12-27 16:57:55 +01:00
LL | x > std::f32::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:18:5
|
2018-12-27 16:57:55 +01:00
LL | x <= std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:19:5
|
2018-12-27 16:57:55 +01:00
LL | x >= std::f32::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:22:5
|
2018-12-27 16:57:55 +01:00
LL | y == std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:23:5
|
2018-12-27 16:57:55 +01:00
LL | y != std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:24:5
|
2018-12-27 16:57:55 +01:00
LL | y < std::f64::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:25:5
|
2018-12-27 16:57:55 +01:00
LL | y > std::f64::NAN;
| ^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:26:5
|
2018-12-27 16:57:55 +01:00
LL | y <= std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead
2018-12-10 06:27:19 +01:00
--> $DIR/cmp_nan.rs:27:5
|
2018-12-27 16:57:55 +01:00
LL | y >= std::f64::NAN;
| ^^^^^^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 12 previous errors