mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
12 lines
274 B
Text
12 lines
274 B
Text
error: needlessly taken reference of both operands
|
|
--> $DIR/op_ref.rs:13:15
|
|
|
|
|
13 | let foo = &5 - &6;
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D op-ref` implied by `-D warnings`
|
|
help: use the values directly
|
|
|
|
|
13 | let foo = 5 - 6;
|
|
| ^
|
|
|