mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
514 B
Plaintext
23 lines
514 B
Plaintext
error: needlessly taken reference of both operands
|
|
--> $DIR/op_ref.rs:19: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:27:8
|
|
|
|
|
LL | if b < &a {
|
|
| ^^^^--
|
|
| |
|
|
| help: use the right value directly: `a`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|