summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/op_ref.stderr
blob: a3a9adcc483551aa12d80c7423fa241625234e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: needlessly taken reference of both operands
  --> $DIR/op_ref.rs:12:15
   |
LL |     let foo = &5 - &6;
   |               ^^^^^^^
   |
   = note: `-D clippy::op-ref` implied by `-D warnings`
help: use the values directly
   |
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