mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
38 lines
1,015 B
Text
38 lines
1,015 B
Text
error: needlessly taken reference of both operands
|
|
--> $DIR/op_ref.rs:11: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:56:13
|
|
|
|
|
LL | let z = x & &y;
|
|
| ^^^^--
|
|
| |
|
|
| help: use the right value directly: `y`
|
|
|
|
error: taken reference of right operand
|
|
--> $DIR/op_ref.rs:89:17
|
|
|
|
|
LL | let _ = one * &self;
|
|
| ^^^^^^-----
|
|
| |
|
|
| help: use the right value directly: `self`
|
|
|
|
error: taken reference of right operand
|
|
--> $DIR/op_ref.rs:90:17
|
|
|
|
|
LL | let _ = two + &three;
|
|
| ^^^^^^------
|
|
| |
|
|
| help: use the right value directly: `three`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|