]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/neg_multiply.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / neg_multiply.stderr
index 5e5d1afaafe710c7684662de219ea95f48ac4a32..4c6d8e8d5dda02658f745773d1f844f7d397f4d9 100644 (file)
@@ -1,7 +1,7 @@
 error: Negation by multiplying with -1
   --> $DIR/neg_multiply.rs:36:5
    |
-36 |     x * -1;
+LL |     x * -1;
    |     ^^^^^^
    |
    = note: `-D clippy::neg-multiply` implied by `-D warnings`
@@ -9,7 +9,7 @@ error: Negation by multiplying with -1
 error: Negation by multiplying with -1
   --> $DIR/neg_multiply.rs:38:5
    |
-38 |     -1 * x;
+LL |     -1 * x;
    |     ^^^^^^
 
 error: aborting due to 2 previous errors