blob: 340ed5ef1339d807c5338e75ea8fc47b329e00b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#[allow(unused_variables, clippy::eq_op)]
#[warn(clippy::zero_divided_by_zero)]
fn main() {
let nan = 0.0 / 0.0;
//~^ ERROR: constant division of `0.0` with `0.0` will always result in NaN
let f64_nan = 0.0 / 0.0f64;
//~^ ERROR: constant division of `0.0` with `0.0` will always result in NaN
let other_f64_nan = 0.0f64 / 0.0;
//~^ ERROR: constant division of `0.0` with `0.0` will always result in NaN
let one_more_f64_nan = 0.0f64 / 0.0f64;
//~^ ERROR: constant division of `0.0` with `0.0` will always result in NaN
let zero = 0.0;
let other_zero = 0.0;
let other_nan = zero / other_zero; // fine - this lint doesn't propagate constants.
let not_nan = 2.0 / 0.0; // not an error: 2/0 = inf
let also_not_nan = 0.0 / 2.0; // not an error: 0/2 = 0
}
|