rust-clippy/tests/ui/op_ref.stderr
2017-10-03 12:07:24 +02:00

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;
| ^