rust/clippy_tests/examples/op_ref.stderr
2017-07-16 19:34:38 +02:00

17 lines
362 B
Plaintext

error: needlessly taken reference of both operands
--> 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
To learn more, run the command again with --verbose.