2017-05-17 14:19:44 +02:00
|
|
|
error: equal expressions as operands to `/`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:4:15
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let nan = 0.0 / 0.0;
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2019-07-19 00:35:32 +02:00
|
|
|
= note: `#[deny(clippy::eq_op)]` on by default
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 07:36:33 +01:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:4:15
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let nan = 0.0 / 0.0;
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::zero-divided-by-zero` implied by `-D warnings`
|
|
|
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
error: equal expressions as operands to `/`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:5:19
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let f64_nan = 0.0 / 0.0f64;
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 07:36:33 +01:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:5:19
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let f64_nan = 0.0 / 0.0f64;
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
error: equal expressions as operands to `/`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:6:25
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let other_f64_nan = 0.0f64 / 0.0;
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 07:36:33 +01:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:6:25
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let other_f64_nan = 0.0f64 / 0.0;
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
error: equal expressions as operands to `/`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:7:28
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let one_more_f64_nan = 0.0f64 / 0.0f64;
|
2018-12-10 06:27:19 +01:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 07:36:33 +01:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/zero_div_zero.rs:7:28
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let one_more_f64_nan = 0.0f64 / 0.0f64;
|
2018-12-10 06:27:19 +01:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
|
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|