2017-05-17 07:19:44 -05:00
|
|
|
error: needlessly taken reference of both operands
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/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
|
2017-07-10 08:29:29 -05:00
|
|
|
|
|
|
|
|
13 | let foo = 5 - 6;
|
2017-11-10 01:58:54 -06:00
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
|