]> 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 8a05d2c251d136ee77014c2a07fbdf74b5ee1329..e54ce85f98ec78b4ddf7730bd064ebfc9a258a4d 100644 (file)
@@ -1,20 +1,22 @@
 error: this operation will always return zero. This is likely not the intended outcome
--> $DIR/erasing_op.rs:9:5
-  |
-9 |     x * 0;
-  |     ^^^^^
-  |
-  = note: `-D erasing-op` implied by `-D warnings`
 --> $DIR/erasing_op.rs:6:5
+   |
+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:10:5
+  --> $DIR/erasing_op.rs:7:5
    |
-10 |     0 & x;
+LL |     0 & x;
    |     ^^^^^
 
 error: this operation will always return zero. This is likely not the intended outcome
-  --> $DIR/erasing_op.rs:11:5
+  --> $DIR/erasing_op.rs:8:5
    |
-11 |     0 / x;
+LL |     0 / x;
    |     ^^^^^
 
+error: aborting due to 3 previous errors
+