@@ -17,7 +17,7 @@ LL | lhs + rhs;
1717 | --- you could clone this value
1818note: calling this operator moves the left-hand side
1919 --> $SRC_DIR/core/src/ops/arith.rs:LL:COL
20- help: consider further restricting this bound with trait `Copy`
20+ help: consider further restricting type parameter `A` with trait `Copy`
2121 |
2222LL | fn add<A: Add<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
2323 | ++++++
@@ -64,7 +64,7 @@ LL | lhs - rhs;
6464 | --- you could clone this value
6565note: calling this operator moves the left-hand side
6666 --> $SRC_DIR/core/src/ops/arith.rs:LL:COL
67- help: consider further restricting this bound with trait `Copy`
67+ help: consider further restricting type parameter `A` with trait `Copy`
6868 |
6969LL | fn sub<A: Sub<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
7070 | ++++++
@@ -111,7 +111,7 @@ LL | lhs * rhs;
111111 | --- you could clone this value
112112note: calling this operator moves the left-hand side
113113 --> $SRC_DIR/core/src/ops/arith.rs:LL:COL
114- help: consider further restricting this bound with trait `Copy`
114+ help: consider further restricting type parameter `A` with trait `Copy`
115115 |
116116LL | fn mul<A: Mul<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
117117 | ++++++
@@ -158,7 +158,7 @@ LL | lhs / rhs;
158158 | --- you could clone this value
159159note: calling this operator moves the left-hand side
160160 --> $SRC_DIR/core/src/ops/arith.rs:LL:COL
161- help: consider further restricting this bound with trait `Copy`
161+ help: consider further restricting type parameter `A` with trait `Copy`
162162 |
163163LL | fn div<A: Div<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
164164 | ++++++
@@ -205,7 +205,7 @@ LL | lhs % rhs;
205205 | --- you could clone this value
206206note: calling this operator moves the left-hand side
207207 --> $SRC_DIR/core/src/ops/arith.rs:LL:COL
208- help: consider further restricting this bound with trait `Copy`
208+ help: consider further restricting type parameter `A` with trait `Copy`
209209 |
210210LL | fn rem<A: Rem<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
211211 | ++++++
@@ -252,7 +252,7 @@ LL | lhs & rhs;
252252 | --- you could clone this value
253253note: calling this operator moves the left-hand side
254254 --> $SRC_DIR/core/src/ops/bit.rs:LL:COL
255- help: consider further restricting this bound with trait `Copy`
255+ help: consider further restricting type parameter `A` with trait `Copy`
256256 |
257257LL | fn bitand<A: BitAnd<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
258258 | ++++++
@@ -299,7 +299,7 @@ LL | lhs | rhs;
299299 | --- you could clone this value
300300note: calling this operator moves the left-hand side
301301 --> $SRC_DIR/core/src/ops/bit.rs:LL:COL
302- help: consider further restricting this bound with trait `Copy`
302+ help: consider further restricting type parameter `A` with trait `Copy`
303303 |
304304LL | fn bitor<A: BitOr<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
305305 | ++++++
@@ -346,7 +346,7 @@ LL | lhs ^ rhs;
346346 | --- you could clone this value
347347note: calling this operator moves the left-hand side
348348 --> $SRC_DIR/core/src/ops/bit.rs:LL:COL
349- help: consider further restricting this bound with trait `Copy`
349+ help: consider further restricting type parameter `A` with trait `Copy`
350350 |
351351LL | fn bitxor<A: BitXor<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
352352 | ++++++
@@ -393,7 +393,7 @@ LL | lhs << rhs;
393393 | --- you could clone this value
394394note: calling this operator moves the left-hand side
395395 --> $SRC_DIR/core/src/ops/bit.rs:LL:COL
396- help: consider further restricting this bound with trait `Copy`
396+ help: consider further restricting type parameter `A` with trait `Copy`
397397 |
398398LL | fn shl<A: Shl<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
399399 | ++++++
@@ -440,7 +440,7 @@ LL | lhs >> rhs;
440440 | --- you could clone this value
441441note: calling this operator moves the left-hand side
442442 --> $SRC_DIR/core/src/ops/bit.rs:LL:COL
443- help: consider further restricting this bound with trait `Copy`
443+ help: consider further restricting type parameter `A` with trait `Copy`
444444 |
445445LL | fn shr<A: Shr<B, Output=()> + Copy, B>(lhs: A, rhs: B) {
446446 | ++++++
0 commit comments