2018-08-08 12:28:26 +00:00
|
|
|
error[E0505]: cannot move out of `*a` because it is borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-move-from-subpath-of-borrowed-path.rs:12:13
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let a: Box<Box<_>> = Box::new(Box::new(2));
|
|
|
|
| - binding `a` declared here
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | let b = &a;
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- borrow of `a` occurs here
|
2022-06-08 18:07:59 +00:00
|
|
|
LL |
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let z = *a;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^ move out of `*a` occurs here
|
|
|
|
LL | b.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0505`.
|