rust/tests/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
540 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0505]: cannot move out of `*a` because it is borrowed
--> $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;
| -- 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;
| ^^ move out of `*a` occurs here
LL | b.use_ref();
2021-09-16 15:01:22 -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`.