rust/tests/ui/zero_div_zero.stderr

62 lines
1.9 KiB
Plaintext
Raw Normal View History

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