Skip to content

Commit

Permalink
clean tests/ui/zero_div_zero.rs
Browse files Browse the repository at this point in the history
Cleaning the empty lines for clarity.
  • Loading branch information
luisbg committed May 11, 2017
1 parent b5a124b commit 6f3679b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 27 deletions.
3 changes: 0 additions & 3 deletions tests/ui/wrong_macro_span.rs_
Expand Up @@ -19,9 +19,6 @@ fn main() {
let t = &thingy;

match t.$idx { Foo::A(ref val) => { println!("42"); }, _ => {} }



}}
}

Expand Down
4 changes: 0 additions & 4 deletions tests/ui/zero_div_zero.rs
Expand Up @@ -5,13 +5,9 @@
#[deny(zero_divided_by_zero)]
fn main() {
let nan = 0.0 / 0.0;

let f64_nan = 0.0 / 0.0f64;

let other_f64_nan = 0.0f64 / 0.0;

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.
Expand Down
40 changes: 20 additions & 20 deletions tests/ui/zero_div_zero.stderr
Expand Up @@ -20,49 +20,49 @@ note: lint level defined here
= help: Consider using `std::f32::NAN` if you would like a constant representing NaN

warning: equal expressions as operands to `/`
--> $DIR/zero_div_zero.rs:9:19
--> $DIR/zero_div_zero.rs:8:19
|
9 | let f64_nan = 0.0 / 0.0f64;
8 | let f64_nan = 0.0 / 0.0f64;
| ^^^^^^^^^^^^
|
= note: #[warn(eq_op)] on by default

error: constant division of 0.0 with 0.0 will always result in NaN
--> $DIR/zero_div_zero.rs:9:19
--> $DIR/zero_div_zero.rs:8:19
|
9 | let f64_nan = 0.0 / 0.0f64;
8 | let f64_nan = 0.0 / 0.0f64;
| ^^^^^^^^^^^^
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN

warning: equal expressions as operands to `/`
--> $DIR/zero_div_zero.rs:11:25
|
11 | let other_f64_nan = 0.0f64 / 0.0;
| ^^^^^^^^^^^^
|
= note: #[warn(eq_op)] on by default
--> $DIR/zero_div_zero.rs:9:25
|
9 | let other_f64_nan = 0.0f64 / 0.0;
| ^^^^^^^^^^^^
|
= note: #[warn(eq_op)] on by default

error: constant division of 0.0 with 0.0 will always result in NaN
--> $DIR/zero_div_zero.rs:11:25
|
11 | let other_f64_nan = 0.0f64 / 0.0;
| ^^^^^^^^^^^^
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
--> $DIR/zero_div_zero.rs:9:25
|
9 | let other_f64_nan = 0.0f64 / 0.0;
| ^^^^^^^^^^^^
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN

warning: equal expressions as operands to `/`
--> $DIR/zero_div_zero.rs:13:28
--> $DIR/zero_div_zero.rs:10:28
|
13 | let one_more_f64_nan = 0.0f64/0.0f64;
10 | let one_more_f64_nan = 0.0f64/0.0f64;
| ^^^^^^^^^^^^^
|
= note: #[warn(eq_op)] on by default

error: constant division of 0.0 with 0.0 will always result in NaN
--> $DIR/zero_div_zero.rs:13:28
--> $DIR/zero_div_zero.rs:10:28
|
13 | let one_more_f64_nan = 0.0f64/0.0f64;
10 | let one_more_f64_nan = 0.0f64/0.0f64;
| ^^^^^^^^^^^^^
|
= help: Consider using `std::f64::NAN` if you would like a constant representing NaN
Expand Down

0 comments on commit 6f3679b

Please sign in to comment.