rust/tests/ui/zero_div_zero.stderr

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-01-06 00:36:33 -06:00
error: constant division of `0.0` with `0.0` will always result in NaN
--> $DIR/zero_div_zero.rs:4:15
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let nan = 0.0 / 0.0;
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
2022-09-22 11:04:22 -05:00
= note: `-D clippy::zero-divided-by-zero` implied by `-D warnings`
2020-01-06 00:36:33 -06:00
error: constant division of `0.0` with `0.0` will always result in NaN
--> $DIR/zero_div_zero.rs:5:19
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let f64_nan = 0.0 / 0.0f64;
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
2020-01-06 00:36:33 -06:00
error: constant division of `0.0` with `0.0` will always result in NaN
--> $DIR/zero_div_zero.rs:6:25
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let other_f64_nan = 0.0f64 / 0.0;
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
2020-01-06 00:36:33 -06:00
error: constant division of `0.0` with `0.0` will always result in NaN
--> $DIR/zero_div_zero.rs:7:28
|
2018-12-27 09:57:55 -06:00
LL | let one_more_f64_nan = 0.0f64 / 0.0f64;
2018-12-09 23:27:19 -06:00
| ^^^^^^^^^^^^^^^
|
= help: consider using `f64::NAN` if you would like a constant representing NaN
error: aborting due to 4 previous errors
2018-01-16 10:06:27 -06:00