rust-clippy/tests/ui/zero_div_zero.rs

14 lines
467 B
Rust
Raw Normal View History

#[allow(unused_variables)]
2018-07-28 15:34:52 +00:00
#[warn(clippy::zero_divided_by_zero)]
fn main() {
2017-02-08 13:58:07 +00:00
let nan = 0.0 / 0.0;
let f64_nan = 0.0 / 0.0f64;
let other_f64_nan = 0.0f64 / 0.0;
2018-12-09 22:26:16 +00:00
let one_more_f64_nan = 0.0f64 / 0.0f64;
let zero = 0.0;
let other_zero = 0.0;
2021-02-05 15:10:52 +00:00
let other_nan = zero / other_zero; // fine - this lint doesn't propagate constants.
2018-12-09 22:26:16 +00:00
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
}