blob: 575672959929c4057cecf68079095429a16988c5 [file] [log] [blame]
error[E0504]: cannot move `v` into closure because it is borrowed
--> $DIR/borrowck-loan-blocks-move-cc.rs:25:27
|
LL | let w = &v;
| - borrow of `v` occurs here
LL | thread::spawn(move|| {
LL | println!("v={}", *v);
| ^ move into closure occurs here
error[E0504]: cannot move `v` into closure because it is borrowed
--> $DIR/borrowck-loan-blocks-move-cc.rs:35:27
|
LL | let w = &v;
| - borrow of `v` occurs here
LL | thread::spawn(move|| {
LL | println!("v={}", *v);
| ^ move into closure occurs here
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0504`.