2017-05-17 12:19:44 +00:00
|
|
|
error: needlessly taken reference of both operands
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/op_ref.rs:11:15
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let foo = &5 - &6;
|
2017-05-17 12:19:44 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::op-ref` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::op_ref)]`
|
2017-05-17 12:19:44 +00:00
|
|
|
help: use the values directly
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let foo = 5 - 6;
|
2021-08-11 14:21:33 +00:00
|
|
|
| ~ ~
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2019-09-20 05:54:16 +00:00
|
|
|
error: taken reference of right operand
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/op_ref.rs:58:13
|
2019-09-20 05:54:16 +00:00
|
|
|
|
|
|
|
|
LL | let z = x & &y;
|
|
|
|
| ^^^^--
|
|
|
|
| |
|
|
|
|
| help: use the right value directly: `y`
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
error: taken reference of right operand
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/op_ref.rs:92:17
|
2022-01-27 14:12:45 +00:00
|
|
|
|
|
|
|
|
LL | let _ = one * &self;
|
|
|
|
| ^^^^^^-----
|
|
|
|
| |
|
|
|
|
| help: use the right value directly: `self`
|
|
|
|
|
|
|
|
error: taken reference of right operand
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/op_ref.rs:94:17
|
2022-01-27 14:12:45 +00:00
|
|
|
|
|
|
|
|
LL | let _ = two + &three;
|
|
|
|
| ^^^^^^------
|
|
|
|
| |
|
|
|
|
| help: use the right value directly: `three`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|