2018-08-08 12:28:26 +00:00
|
|
|
error[E0382]: use of moved value: `a[..]`
|
2019-11-22 23:15:11 +00:00
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:12:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-11-22 23:15:11 +00:00
|
|
|
LL | let [_, _, _x] = a;
|
|
|
|
| -- value moved here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | let [.., _y] = a;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^ value used here after move
|
|
|
|
|
|
2019-11-22 23:15:11 +00:00
|
|
|
= note: move occurs because `a[..]` has type `(std::string::String, std::string::String)`, which does not implement the `Copy` trait
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a[..]`
|
2019-11-22 23:15:11 +00:00
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:18:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-11-22 23:15:11 +00:00
|
|
|
LL | let [_, _, (_x, _)] = a;
|
|
|
|
| -- value moved here
|
|
|
|
LL | let [.., _y] = a;
|
|
|
|
| ^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..].0` has type `std::string::String`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a[..].0`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:24:15
|
|
|
|
|
|
|
|
|
LL | let [_, _, (_x, _)] = a;
|
|
|
|
| -- value moved here
|
|
|
|
LL | let [.., (_y, _)] = a;
|
|
|
|
| ^^ value used here after move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..].0` has type `std::string::String`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:32:10
|
|
|
|
|
|
|
|
|
LL | let [_x, _, _] = a;
|
2018-08-08 12:28:26 +00:00
|
|
|
| -- value moved here
|
2019-11-22 23:15:11 +00:00
|
|
|
LL | let [_y @ .., _, _] = a;
|
|
|
|
| ^^^^^^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..]` has type `(std::string::String, std::string::String)`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:38:16
|
|
|
|
|
|
|
|
|
LL | let [.., _x] = a;
|
|
|
|
| -- value moved here
|
|
|
|
LL | let [_, _, _y @ ..] = a;
|
|
|
|
| ^^^^^^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..]` has type `(std::string::String, std::string::String)`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:44:10
|
|
|
|
|
|
|
|
|
LL | let [(_x, _), _, _] = a;
|
|
|
|
| -- value moved here
|
|
|
|
LL | let [_y @ .., _, _] = a;
|
|
|
|
| ^^^^^^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..].0` has type `std::string::String`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:50:16
|
|
|
|
|
|
|
|
|
LL | let [.., (_x, _)] = a;
|
|
|
|
| -- value moved here
|
|
|
|
LL | let [_, _, _y @ ..] = a;
|
|
|
|
| ^^^^^^^ value used here after partial move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..].0` has type `std::string::String`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a[..].0`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:56:11
|
|
|
|
|
|
|
|
|
LL | let [_y @ .., _, _] = a;
|
|
|
|
| ------- value moved here
|
|
|
|
LL | let [(_x, _), _, _] = a;
|
|
|
|
| ^^ value used here after move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..]` has type `(std::string::String, std::string::String)`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a[..].0`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:62:15
|
|
|
|
|
|
|
|
|
LL | let [_, _, _y @ ..] = a;
|
|
|
|
| ------- value moved here
|
|
|
|
LL | let [.., (_x, _)] = a;
|
|
|
|
| ^^ value used here after move
|
|
|
|
|
|
|
|
|
= note: move occurs because `a[..]` has type `(std::string::String, std::string::String)`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `a`
|
|
|
|
--> $DIR/borrowck-move-out-from-array.rs:70:13
|
|
|
|
|
|
|
|
|
LL | let [x @ .., _] = a;
|
|
|
|
| ------ value moved here
|
|
|
|
LL | let [_, _y @ ..] = a;
|
|
|
|
| ^^^^^^^ value used here after partial move
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-11-22 23:15:11 +00:00
|
|
|
= note: move occurs because `a[..]` has type `(std::string::String, std::string::String)`, which does not implement the `Copy` trait
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-11-22 23:15:11 +00:00
|
|
|
error: aborting due to 10 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|