rust-clippy/tests/ui/op_ref.stderr
2017-04-10 15:10:19 +02:00

10 lines
284 B
Text

warning: taken reference of both operands, which is done automatically by the operator anyway
--> $DIR/op_ref.rs:13:15
|
13 | let foo = &5 - &6;
| ^^^^^^^
|
= note: #[warn(op_ref)] on by default
help: use the values directly
| let foo = 5 - 6;