2019-04-22 08:40:08 +01:00
|
|
|
error[E0506]: cannot assign to `vec[_]` because it is borrowed
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:9:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | [box ref _a, _, _] => {
|
2019-04-22 08:40:08 +01:00
|
|
|
| ------ borrow of `vec[_]` occurs here
|
2019-03-09 15:03:44 +03:00
|
|
|
LL |
|
|
|
|
LL | vec[0] = box 4;
|
2019-04-22 08:40:08 +01:00
|
|
|
| ^^^^^^ assignment to borrowed `vec[_]` occurs here
|
|
|
|
LL |
|
|
|
|
LL | _a.use_ref();
|
|
|
|
| -- borrow later used here
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
error[E0506]: cannot assign to `vec[_]` because it is borrowed
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:23:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-07-08 01:58:28 +02:00
|
|
|
LL | &mut [ref _b @ ..] => {
|
|
|
|
| ----------- borrow of `vec[_]` occurs here
|
2019-03-09 15:03:44 +03:00
|
|
|
LL |
|
|
|
|
LL | vec[0] = box 4;
|
2019-04-22 08:40:08 +01:00
|
|
|
| ^^^^^^ assignment to borrowed `vec[_]` occurs here
|
|
|
|
LL |
|
|
|
|
LL | _b.use_ref();
|
|
|
|
| -- borrow later used here
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0508]: cannot move out of type `[Box<isize>]`, a non-copy slice
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:34:11
|
2019-04-22 08:40:08 +01:00
|
|
|
|
|
|
|
|
LL | match vec {
|
|
|
|
| ^^^ cannot move out of here
|
|
|
|
...
|
|
|
|
LL | &mut [_a,
|
2019-05-05 12:02:32 +01:00
|
|
|
| --
|
|
|
|
| |
|
|
|
|
| data moved here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `_a` has type `Box<isize>`, which does not implement the `Copy` trait
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
help: consider removing the `&mut`
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL ~ [_a,
|
|
|
|
LL +
|
|
|
|
LL +
|
|
|
|
LL +
|
|
|
|
LL + ..
|
|
|
|
LL ~ ] => {
|
2019-04-22 08:40:08 +01:00
|
|
|
|
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0508]: cannot move out of type `[Box<isize>]`, a non-copy slice
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:46:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let a = vec[0];
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `vec[_]` has type `Box<isize>`, which does not implement the `Copy` trait
|
2019-04-22 08:40:08 +01:00
|
|
|
| help: consider borrowing here: `&vec[0]`
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0508]: cannot move out of type `[Box<isize>]`, a non-copy slice
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:55:11
|
2019-04-22 08:40:08 +01:00
|
|
|
|
|
|
|
|
LL | match vec {
|
|
|
|
| ^^^ cannot move out of here
|
|
|
|
...
|
|
|
|
LL | _b] => {}
|
2019-05-05 12:02:32 +01:00
|
|
|
| --
|
|
|
|
| |
|
|
|
|
| data moved here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `_b` has type `Box<isize>`, which does not implement the `Copy` trait
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
help: consider removing the `&mut`
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL ~ [
|
|
|
|
LL +
|
|
|
|
LL ~ _b] => {}
|
2019-04-22 08:40:08 +01:00
|
|
|
|
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0508]: cannot move out of type `[Box<isize>]`, a non-copy slice
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:65:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let a = vec[0];
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `vec[_]` has type `Box<isize>`, which does not implement the `Copy` trait
|
2019-04-22 08:40:08 +01:00
|
|
|
| help: consider borrowing here: `&vec[0]`
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0508]: cannot move out of type `[Box<isize>]`, a non-copy slice
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:74:11
|
2019-04-22 08:40:08 +01:00
|
|
|
|
|
|
|
|
LL | match vec {
|
|
|
|
| ^^^ cannot move out of here
|
|
|
|
...
|
|
|
|
LL | &mut [_a, _b, _c] => {}
|
|
|
|
| -----------------
|
|
|
|
| | | | |
|
|
|
|
| | | | ...and here
|
|
|
|
| | | ...and here
|
|
|
|
| | data moved here
|
|
|
|
| help: consider removing the `&mut`: `[_a, _b, _c]`
|
|
|
|
|
|
2019-11-25 12:32:57 -08:00
|
|
|
= note: move occurs because these variables have types that don't implement the `Copy` trait
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0508]: cannot move out of type `[Box<isize>]`, a non-copy slice
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/borrowck-vec-pattern-nesting.rs:85:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let a = vec[0];
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of here
|
2020-09-02 10:40:56 +03:00
|
|
|
| move occurs because `vec[_]` has type `Box<isize>`, which does not implement the `Copy` trait
|
2019-04-22 08:40:08 +01:00
|
|
|
| help: consider borrowing here: `&vec[0]`
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0506, E0508.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0506`.
|