]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/neg_multiply.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / neg_multiply.stderr
index 1d52ba16eae8e5fd9d99fd507251eb9acc6ea50d..dbf8fb36938cbcbdd918c9d18656e32640e695e2 100644 (file)
@@ -1,16 +1,40 @@
-error: Negation by multiplying with -1
-  --> $DIR/neg_multiply.rs:30:5
+error: this multiplication by -1 can be written more succinctly
+  --> $DIR/neg_multiply.rs:29:5
    |
-30 |     x * -1;
-   |     ^^^^^^
+LL |     x * -1;
+   |     ^^^^^^ help: consider using: `-x`
    |
-   = note: `-D neg-multiply` implied by `-D warnings`
+   = note: `-D clippy::neg-multiply` implied by `-D warnings`
 
-error: Negation by multiplying with -1
-  --> $DIR/neg_multiply.rs:32:5
+error: this multiplication by -1 can be written more succinctly
+  --> $DIR/neg_multiply.rs:31:5
    |
-32 |     -1 * x;
-   |     ^^^^^^
+LL |     -1 * x;
+   |     ^^^^^^ help: consider using: `-x`
 
-error: aborting due to 2 previous errors
+error: this multiplication by -1 can be written more succinctly
+  --> $DIR/neg_multiply.rs:33:11
+   |
+LL |     100 + x * -1;
+   |           ^^^^^^ help: consider using: `-x`
+
+error: this multiplication by -1 can be written more succinctly
+  --> $DIR/neg_multiply.rs:35:5
+   |
+LL |     (100 + x) * -1;
+   |     ^^^^^^^^^^^^^^ help: consider using: `-(100 + x)`
+
+error: this multiplication by -1 can be written more succinctly
+  --> $DIR/neg_multiply.rs:37:5
+   |
+LL |     -1 * 17;
+   |     ^^^^^^^ help: consider using: `-17`
+
+error: this multiplication by -1 can be written more succinctly
+  --> $DIR/neg_multiply.rs:39:14
+   |
+LL |     0xcafe | 0xff00 * -1;
+   |              ^^^^^^^^^^^ help: consider using: `-0xff00`
+
+error: aborting due to 6 previous errors