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