mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
error[E0505]: cannot move out of `v` because it is borrowed
|
|
--> $DIR/borrowck-loan-blocks-move-cc.rs:14:19
|
|
|
|
|
LL | let v: Box<_> = Box::new(3);
|
|
| - binding `v` declared here
|
|
LL | let w = &v;
|
|
| -- borrow of `v` occurs here
|
|
LL | thread::spawn(move|| {
|
|
| ^^^^^^ move out of `v` occurs here
|
|
LL |
|
|
LL | println!("v={}", *v);
|
|
| -- move occurs due to use in closure
|
|
LL | });
|
|
LL | w.use_ref();
|
|
| - borrow later used here
|
|
|
|
error[E0505]: cannot move out of `v` because it is borrowed
|
|
--> $DIR/borrowck-loan-blocks-move-cc.rs:24:19
|
|
|
|
|
LL | let v: Box<_> = Box::new(3);
|
|
| - binding `v` declared here
|
|
LL | let w = &v;
|
|
| -- borrow of `v` occurs here
|
|
LL | thread::spawn(move|| {
|
|
| ^^^^^^ move out of `v` occurs here
|
|
LL |
|
|
LL | println!("v={}", *v);
|
|
| -- move occurs due to use in closure
|
|
LL | });
|
|
LL | w.use_ref();
|
|
| - borrow later used here
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0505`.
|