mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
14 lines
297 B
Text
14 lines
297 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;
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|