2017-05-17 12:19:44 +00:00
|
|
|
error: equal expressions as operands to `/`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:17:15
|
|
|
|
|
|
|
|
|
17 | let nan = 0.0 / 0.0;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: #[deny(clippy::eq_op)] on by default
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: constant division of 0.0 with 0.0 will always result in NaN
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:17:15
|
|
|
|
|
|
|
|
|
17 | let nan = 0.0 / 0.0;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= 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 20:05:30 +00:00
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: equal expressions as operands to `/`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:18:19
|
|
|
|
|
|
|
|
|
18 | let f64_nan = 0.0 / 0.0f64;
|
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: constant division of 0.0 with 0.0 will always result in NaN
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:18:19
|
|
|
|
|
|
|
|
|
18 | let f64_nan = 0.0 / 0.0f64;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: equal expressions as operands to `/`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:19:25
|
|
|
|
|
|
|
|
|
19 | let other_f64_nan = 0.0f64 / 0.0;
|
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: constant division of 0.0 with 0.0 will always result in NaN
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:19:25
|
|
|
|
|
|
|
|
|
19 | let other_f64_nan = 0.0f64 / 0.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: equal expressions as operands to `/`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:20:28
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
20 | let one_more_f64_nan = 0.0f64/0.0f64;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: constant division of 0.0 with 0.0 will always result in NaN
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/zero_div_zero.rs:20:28
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
20 | let one_more_f64_nan = 0.0f64/0.0f64;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|