]> git.lizzy.rs Git - rust.git/commitdiff
clean tests/ui/zero_div_zero.rs
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Thu, 11 May 2017 15:16:19 +0000 (16:16 +0100)
committerLuis de Bethencourt <luisbg@osg.samsung.com>
Thu, 11 May 2017 15:22:32 +0000 (16:22 +0100)
Cleaning the empty lines for clarity.

tests/ui/wrong_macro_span.rs_
tests/ui/zero_div_zero.rs
tests/ui/zero_div_zero.stderr

index fcacb030b850745f69b6518cb31ef95ca8960310..040615d067e1200b6701eb185c1f17ba6d057dd3 100644 (file)
@@ -19,9 +19,6 @@ fn main() {
             let t = &thingy;
 
             match t.$idx { Foo::A(ref val) => { println!("42"); }, _ => {} }
-
-
-
         }}
     }
 
index 6f126337246774d3836129863f620fffa58aafbc..22253476c231ac870dbd682937485355889a2625 100644 (file)
@@ -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.
index 6b34e2da13ca05904ff778c11e6e33b189875ac0..4853c2dc70c8861348415073528ad6f62849e27e 100644 (file)
@@ -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