]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/erasing_op.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / erasing_op.stderr
index a500a132af7df839deae3ed08968c843a23486f0..e54ce85f98ec78b4ddf7730bd064ebfc9a258a4d 100644 (file)
@@ -1,21 +1,21 @@
 error: this operation will always return zero. This is likely not the intended outcome
-  --> $DIR/erasing_op.rs:15:5
+  --> $DIR/erasing_op.rs:6:5
    |
-15 |     x * 0;
+LL |     x * 0;
    |     ^^^^^
    |
    = note: `-D clippy::erasing-op` implied by `-D warnings`
 
 error: this operation will always return zero. This is likely not the intended outcome
-  --> $DIR/erasing_op.rs:16:5
+  --> $DIR/erasing_op.rs:7:5
    |
-16 |     0 & x;
+LL |     0 & x;
    |     ^^^^^
 
 error: this operation will always return zero. This is likely not the intended outcome
-  --> $DIR/erasing_op.rs:17:5
+  --> $DIR/erasing_op.rs:8:5
    |
-17 |     0 / x;
+LL |     0 / x;
    |     ^^^^^
 
 error: aborting due to 3 previous errors