rust-clippy/tests/ui/op_ref.stderr
2018-01-17 14:44:40 +01:00

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