]> git.lizzy.rs Git - rust.git/blob - tests/ui/zero_div_zero.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / zero_div_zero.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 #[allow(unused_variables)]
11 #[warn(clippy::zero_divided_by_zero)]
12 fn main() {
13     let nan = 0.0 / 0.0;
14     let f64_nan = 0.0 / 0.0f64;
15     let other_f64_nan = 0.0f64 / 0.0;
16     let one_more_f64_nan = 0.0f64 / 0.0f64;
17     let zero = 0.0;
18     let other_zero = 0.0;
19     let other_nan = zero / other_zero; // fine - this lint doesn't propegate constants.
20     let not_nan = 2.0 / 0.0; // not an error: 2/0 = inf
21     let also_not_nan = 0.0 / 2.0; // not an error: 0/2 = 0
22 }