diff --git a/tests/ui/wrong_macro_span.rs_ b/tests/ui/wrong_macro_span.rs_ index fcacb030b85..040615d067e 100644 --- a/tests/ui/wrong_macro_span.rs_ +++ b/tests/ui/wrong_macro_span.rs_ @@ -19,9 +19,6 @@ fn main() { let t = &thingy; match t.$idx { Foo::A(ref val) => { println!("42"); }, _ => {} } - - - }} } diff --git a/tests/ui/zero_div_zero.rs b/tests/ui/zero_div_zero.rs index 6f126337246..22253476c23 100644 --- a/tests/ui/zero_div_zero.rs +++ b/tests/ui/zero_div_zero.rs @@ -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. diff --git a/tests/ui/zero_div_zero.stderr b/tests/ui/zero_div_zero.stderr index 6b34e2da13c..4853c2dc70c 100644 --- a/tests/ui/zero_div_zero.stderr +++ b/tests/ui/zero_div_zero.stderr @@ -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