mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-21 10:33:27 +00:00
16 lines
386 B
Text
16 lines
386 B
Text
|
error: needlessly taken reference of both operands
|
||
|
--> examples/op_ref.rs:13:15
|
||
|
|
|
||
|
13 | let foo = &5 - &6;
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
= note: `-D op-ref` implied by `-D warnings`
|
||
|
help: use the values directly
|
||
|
| let foo = 5 - 6;
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
error: Could not compile `clippy_tests`.
|
||
|
|
||
|
To learn more, run the command again with --verbose.
|