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