]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/op_ref.stderr
Auto merge of #6336 - giraffate:sync-from-rust, r=flip1995
[rust.git] / tests / ui / op_ref.stderr
index 5448429f16471bab7633db5a3aec63cd71ed4628..a3a9adcc483551aa12d80c7423fa241625234e56 100644 (file)
@@ -1,10 +1,22 @@
-warning: needlessly taken reference of both operands
-  --> $DIR/op_ref.rs:13:15
+error: needlessly taken reference of both operands
+  --> $DIR/op_ref.rs:12:15
    |
-13 |     let foo = &5 - &6;
+LL |     let foo = &5 - &6;
    |               ^^^^^^^
    |
-   = note: #[warn(op_ref)] on by default
+   = note: `-D clippy::op-ref` implied by `-D warnings`
 help: use the values directly
-   |     let foo = 5 - 6;
+   |
+LL |     let foo = 5 - 6;
+   |               ^   ^
+
+error: taken reference of right operand
+  --> $DIR/op_ref.rs:57:13
+   |
+LL |     let z = x & &y;
+   |             ^^^^--
+   |                 |
+   |                 help: use the right value directly: `y`
+
+error: aborting due to 2 previous errors