2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-01-10 12:18:43 +00:00
rust-clippy/tests/ui/op_ref.stderr

15 lines
313 B
Text
Raw Normal View History

error: needlessly taken reference of both operands
2017-08-01 15:54:21 +00: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 13:29:29 +00:00
|
13 | let foo = 5 - 6;
| ^
2017-07-03 04:37:30 +00:00
error: aborting due to previous error