rust-clippy/tests/ui/zero_div_zero.stderr

62 lines
1.8 KiB
Text
Raw Normal View History

error: equal expressions as operands to `/`
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:7:15
|
2017-02-08 13:58:07 +00:00
7 | let nan = 0.0 / 0.0;
| ^^^^^^^^^
|
2018-03-28 21:49:32 +00:00
= note: #[deny(eq_op)] on by default
error: constant division of 0.0 with 0.0 will always result in NaN
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:7:15
|
2017-02-08 13:58:07 +00:00
7 | let nan = 0.0 / 0.0;
| ^^^^^^^^^
|
= note: `-D zero-divided-by-zero` implied by `-D warnings`
2018-03-13 10:38:11 +00:00
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
error: equal expressions as operands to `/`
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:8:19
|
8 | let f64_nan = 0.0 / 0.0f64;
| ^^^^^^^^^^^^
error: constant division of 0.0 with 0.0 will always result in NaN
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:8:19
|
8 | let f64_nan = 0.0 / 0.0f64;
| ^^^^^^^^^^^^
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
error: equal expressions as operands to `/`
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:9:25
|
9 | let other_f64_nan = 0.0f64 / 0.0;
| ^^^^^^^^^^^^
error: constant division of 0.0 with 0.0 will always result in NaN
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:9:25
|
9 | let other_f64_nan = 0.0f64 / 0.0;
| ^^^^^^^^^^^^
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
error: equal expressions as operands to `/`
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:10:28
|
10 | let one_more_f64_nan = 0.0f64/0.0f64;
| ^^^^^^^^^^^^^
error: constant division of 0.0 with 0.0 will always result in NaN
2017-08-01 15:54:21 +00:00
--> $DIR/zero_div_zero.rs:10:28
|
10 | let one_more_f64_nan = 0.0f64/0.0f64;
| ^^^^^^^^^^^^^
|
= 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