2017-05-17 07:19:44 -05:00
|
|
|
error: needlessly taken reference of both operands
|
2017-05-17 10:51:35 -05:00
|
|
|
--> op_ref.rs:13:15
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
13 | let foo = &5 - &6;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D op-ref` implied by `-D warnings`
|
|
|
|
help: use the values directly
|
|
|
|
| let foo = 5 - 6;
|
|
|
|
|
2017-07-02 23:37:30 -05:00
|
|
|
error: aborting due to previous error
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|