]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/suspicious_arithmetic_impl.stderr
iterate List by value
[rust.git] / tests / ui / suspicious_arithmetic_impl.stderr
index 8130b1cb31abeb86377001387a4d6e636b44a49b..7e42d72c30b2cefd6503f6315ac316e0e372053f 100644 (file)
@@ -1,18 +1,24 @@
 error: Suspicious use of binary operator in `Add` impl
-  --> $DIR/suspicious_arithmetic_impl.rs:14:20
+  --> $DIR/suspicious_arithmetic_impl.rs:11:20
    |
-14 |         Foo(self.0 - other.0)
+LL |         Foo(self.0 - other.0)
    |                    ^
    |
-   = note: `-D suspicious-arithmetic-impl` implied by `-D warnings`
+   = note: `-D clippy::suspicious-arithmetic-impl` implied by `-D warnings`
 
 error: Suspicious use of binary operator in `AddAssign` impl
-  --> $DIR/suspicious_arithmetic_impl.rs:20:23
+  --> $DIR/suspicious_arithmetic_impl.rs:17:23
    |
-20 |         *self = *self - other;
+LL |         *self = *self - other;
    |                       ^
    |
-   = note: #[deny(suspicious_op_assign_impl)] on by default
+   = note: `#[deny(clippy::suspicious_op_assign_impl)]` on by default
 
-error: aborting due to 2 previous errors
+error: Suspicious use of binary operator in `MulAssign` impl
+  --> $DIR/suspicious_arithmetic_impl.rs:30:16
+   |
+LL |         self.0 /= other.0;
+   |                ^^
+
+error: aborting due to 3 previous errors