2020-01-06 15:36:33 +09:00
|
|
|
error: strict comparison of `f32` or `f64`
|
2019-07-27 22:53:26 +01:00
|
|
|
--> $DIR/float_cmp.rs:59:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | ONE as f64 != 2.0;
|
2019-06-17 16:42:41 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE as f64 - 2.0).abs() > error`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::float-cmp` implied by `-D warnings`
|
2020-04-06 23:57:57 +02:00
|
|
|
note: `f32::EPSILON` and `f64::EPSILON` are available.
|
2019-07-27 22:53:26 +01:00
|
|
|
--> $DIR/float_cmp.rs:59:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | ONE as f64 != 2.0;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: strict comparison of `f32` or `f64`
|
2019-07-27 22:53:26 +01:00
|
|
|
--> $DIR/float_cmp.rs:64:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | x == 1.0;
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^ help: consider comparing them within some error: `(x - 1.0).abs() < error`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2020-04-06 23:57:57 +02:00
|
|
|
note: `f32::EPSILON` and `f64::EPSILON` are available.
|
2019-07-27 22:53:26 +01:00
|
|
|
--> $DIR/float_cmp.rs:64:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | x == 1.0;
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: strict comparison of `f32` or `f64`
|
2019-07-27 22:53:26 +01:00
|
|
|
--> $DIR/float_cmp.rs:67:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | twice(x) != twice(ONE as f64);
|
2019-06-17 16:42:41 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(twice(x) - twice(ONE as f64)).abs() > error`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2020-04-06 23:57:57 +02:00
|
|
|
note: `f32::EPSILON` and `f64::EPSILON` are available.
|
2019-07-27 22:53:26 +01:00
|
|
|
--> $DIR/float_cmp.rs:67:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | twice(x) != twice(ONE as f64);
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-03-17 10:32:20 +01:00
|
|
|
error: strict comparison of `f32` or `f64`
|
2019-09-19 15:57:43 +03:00
|
|
|
--> $DIR/float_cmp.rs:83:5
|
|
|
|
|
|
|
|
|
|
|
LL | assert_eq!(a1[0], a2[0]);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2020-03-17 10:32:20 +01:00
|
|
|
note: `std::f32::EPSILON` and `std::f64::EPSILON` are available.
|
2019-09-19 15:57:43 +03:00
|
|
|
--> $DIR/float_cmp.rs:83:5
|
|
|
|
|
|
|
|
|
|
|
LL | assert_eq!(a1[0], a2[0]);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-03-17 10:32:20 +01:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-19 15:57:43 +03:00
|
|
|
|
2020-03-17 10:32:20 +01:00
|
|
|
error: strict comparison of `f32` or `f64`
|
2019-09-19 15:57:43 +03:00
|
|
|
--> $DIR/float_cmp.rs:85:5
|
|
|
|
|
|
|
|
|
|
|
LL | assert_eq!(&a1[0], &a2[0]);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2020-03-17 10:32:20 +01:00
|
|
|
note: `std::f32::EPSILON` and `std::f64::EPSILON` are available.
|
2019-09-19 15:57:43 +03:00
|
|
|
--> $DIR/float_cmp.rs:85:5
|
|
|
|
|
|
|
|
|
|
|
LL | assert_eq!(&a1[0], &a2[0]);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-03-17 10:32:20 +01:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-19 15:57:43 +03:00
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|