rust/clippy_tests/examples/op_ref.stderr
2017-06-19 22:11:12 +02:00

15 lines
339 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
| let foo = 5 - 6;
error: aborting due to previous error(s)
To learn more, run the command again with --verbose.