rust/tests/ui/op_ref.stderr

13 lines
258 B
Plaintext
Raw Normal View History

error: needlessly taken reference of both operands
2017-08-01 10:54:21 -05:00
--> $DIR/op_ref.rs:13:15
|
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
|