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