]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/neg_multiply.stderr
iterate List by value
[rust.git] / tests / ui / neg_multiply.stderr
index ba59fdb8940d710d647c959fc603c12427b0d914..f08bbd6a12c597e4b0912db1a23cbe0bd8bf9bd4 100644 (file)
@@ -1,15 +1,15 @@
-error: Negation by multiplying with -1
-  --> $DIR/neg_multiply.rs:30:5
+error: Negation by multiplying with `-1`
+  --> $DIR/neg_multiply.rs:27:5
    |
-30 |     x * -1;
+LL |     x * -1;
    |     ^^^^^^
    |
    = note: `-D clippy::neg-multiply` implied by `-D warnings`
 
-error: Negation by multiplying with -1
-  --> $DIR/neg_multiply.rs:32:5
+error: Negation by multiplying with `-1`
+  --> $DIR/neg_multiply.rs:29:5
    |
-32 |     -1 * x;
+LL |     -1 * x;
    |     ^^^^^^
 
 error: aborting due to 2 previous errors