rust/src/test/ui/binop/binop-consume-args.stderr

214 lines
7.3 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:7:10
2018-08-08 12:28:26 +00:00
|
LL | lhs + rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:8:10
2018-08-08 12:28:26 +00:00
|
LL | lhs + rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:13:10
2018-08-08 12:28:26 +00:00
|
LL | lhs - rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:14:10
2018-08-08 12:28:26 +00:00
|
LL | lhs - rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:19:10
2018-08-08 12:28:26 +00:00
|
LL | lhs * rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:20:10
2018-08-08 12:28:26 +00:00
|
LL | lhs * rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:25:10
2018-08-08 12:28:26 +00:00
|
LL | lhs / rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:26:10
2018-08-08 12:28:26 +00:00
|
LL | lhs / rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:31:10
2018-08-08 12:28:26 +00:00
|
LL | lhs % rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:32:10
2018-08-08 12:28:26 +00:00
|
LL | lhs % rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:37:10
2018-08-08 12:28:26 +00:00
|
LL | lhs & rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:38:10
2018-08-08 12:28:26 +00:00
|
LL | lhs & rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:43:10
2018-08-08 12:28:26 +00:00
|
LL | lhs | rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:44:10
2018-08-08 12:28:26 +00:00
|
LL | lhs | rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:49:10
2018-08-08 12:28:26 +00:00
|
LL | lhs ^ rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:50:10
2018-08-08 12:28:26 +00:00
|
LL | lhs ^ rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:55:10
2018-08-08 12:28:26 +00:00
|
LL | lhs << rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:56:10
2018-08-08 12:28:26 +00:00
|
LL | lhs << rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `lhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:61:10
2018-08-08 12:28:26 +00:00
|
LL | lhs >> rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
| ^^^ value used here after move
|
= note: move occurs because `lhs` has type `A`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `rhs`
2018-12-25 15:56:47 +00:00
--> $DIR/binop-consume-args.rs:62:10
2018-08-08 12:28:26 +00:00
|
LL | lhs >> rhs;
| --- value moved here
LL | drop(lhs); //~ ERROR use of moved value: `lhs`
LL | drop(rhs); //~ ERROR use of moved value: `rhs`
| ^^^ value used here after move
|
= note: move occurs because `rhs` has type `B`, which does not implement the `Copy` trait
error: aborting due to 20 previous errors
For more information about this error, try `rustc --explain E0382`.