rust-clippy/tests/ui/op_ref.stderr

40 lines
1.1 KiB
Text
Raw Normal View History

error: needlessly taken reference of both operands
2024-02-17 12:16:29 +00:00
--> tests/ui/op_ref.rs:11:15
|
2018-12-27 15:57:55 +00:00
LL | let foo = &5 - &6;
| ^^^^^^^
|
= note: `-D clippy::op-ref` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::op_ref)]`
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
| ~ ~
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`
error: taken reference of right operand
2024-02-17 12:16:29 +00:00
--> tests/ui/op_ref.rs:92:17
|
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
|
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