]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/suspicious_arithmetic_impl.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / suspicious_arithmetic_impl.stderr
index 5e27dd1d44f467727b76e329f439dbef2a75001e..e8a6efc4c4d26b2ae7d5b232457b2f6cc02ae709 100644 (file)
@@ -1,18 +1,18 @@
 error: Suspicious use of binary operator in `Add` impl
-  --> $DIR/suspicious_arithmetic_impl.rs:20:20
+  --> $DIR/suspicious_arithmetic_impl.rs:11:20
    |
-20 |         Foo(self.0 - other.0)
+LL |         Foo(self.0 - other.0)
    |                    ^
    |
    = note: `-D clippy::suspicious-arithmetic-impl` implied by `-D warnings`
 
 error: Suspicious use of binary operator in `AddAssign` impl
-  --> $DIR/suspicious_arithmetic_impl.rs:26:23
+  --> $DIR/suspicious_arithmetic_impl.rs:17:23
    |
-26 |         *self = *self - other;
+LL |         *self = *self - other;
    |                       ^
    |
-   = note: #[deny(clippy::suspicious_op_assign_impl)] on by default
+   = note: `#[deny(clippy::suspicious_op_assign_impl)]` on by default
 
 error: aborting due to 2 previous errors