2020-01-06 06:36:33 +00:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/zero_div_zero.rs:4:15
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let nan = 0.0 / 0.0;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::zero-divided-by-zero` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::zero_divided_by_zero)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/zero_div_zero.rs:6:19
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let f64_nan = 0.0 / 0.0f64;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/zero_div_zero.rs:8:25
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let other_f64_nan = 0.0f64 / 0.0;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: constant division of `0.0` with `0.0` will always result in NaN
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/zero_div_zero.rs:10:28
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let one_more_f64_nan = 0.0f64 / 0.0f64;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|