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