rust/clippy_tests/examples/op_ref.stderr

15 lines
336 B
Text
Raw Normal View History

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;
2017-07-03 06:37:30 +02:00
error: aborting due to previous error
To learn more, run the command again with --verbose.