mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
643 B
Plaintext
22 lines
643 B
Plaintext
error[E0505]: cannot move out of `a.x` because it is borrowed
|
|
--> $DIR/borrowck-move-subcomponent.rs:15:14
|
|
|
|
|
LL | let a : S = S { x : Box::new(1) };
|
|
| - binding `a` declared here
|
|
LL | let pb = &a;
|
|
| -- borrow of `a` occurs here
|
|
LL | let S { x: ax } = a;
|
|
| ^^ move out of `a.x` occurs here
|
|
LL | f(pb);
|
|
| -- borrow later used here
|
|
|
|
|
note: if `S` implemented `Clone`, you could clone the value
|
|
--> $DIR/borrowck-move-subcomponent.rs:6:1
|
|
|
|
|
LL | struct S {
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0505`.
|