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;