2017-05-17 07:19:44 -05:00
|
|
|
error: needlessly taken reference of both operands
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/op_ref.rs:11:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let foo = &5 - &6;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::op-ref` implied by `-D warnings`
|
2017-05-17 07:19:44 -05:00
|
|
|
help: use the values directly
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let foo = 5 - 6;
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~ ~
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2019-09-20 00:54:16 -05:00
|
|
|
error: taken reference of right operand
|
2021-09-14 11:48:30 -05:00
|
|
|
--> $DIR/op_ref.rs:56:13
|
2019-09-20 00:54:16 -05:00
|
|
|
|
|
|
|
|
LL | let z = x & &y;
|
|
|
|
| ^^^^--
|
|
|
|
| |
|
|
|
|
| help: use the right value directly: `y`
|
|
|
|
|
2022-01-16 11:17:22 -06:00
|
|
|
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
|
2018-01-16 10:06:27 -06:00
|
|
|
|