rust/tests/ui/op_ref.stderr

15 lines
297 B
Plaintext
Raw Normal View History

error: needlessly taken reference of both operands
2017-08-01 17:54:21 +02: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 15:29:29 +02:00
|
13 | let foo = 5 - 6;
2017-11-10 08:58:54 +01:00
|
2018-01-16 17:06:27 +01:00
error: aborting due to previous error