rust/tests/ui/zero_div_zero.rs

14 lines
467 B
Rust
Raw Normal View History

#[allow(unused_variables)]
2018-07-28 17:34:52 +02:00
#[warn(clippy::zero_divided_by_zero)]
fn main() {
2017-02-08 14:58:07 +01: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 23:26:16 +01:00
let one_more_f64_nan = 0.0f64 / 0.0f64;
let zero = 0.0;
let other_zero = 0.0;
let other_nan = zero / other_zero; // fine - this lint doesn't propegate constants.
2018-12-09 23:26:16 +01: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
}