]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/borrowck-loan-blocks-move.stderr
New upstream version 1.30.0~beta.7+dfsg1
[rustc.git] / src / test / ui / borrowck / borrowck-loan-blocks-move.stderr
CommitLineData
b7449926
XL
1error[E0505]: cannot move out of `v` because it is borrowed
2 --> $DIR/borrowck-loan-blocks-move.rs:21:10
3 |
4LL | let w = &v;
5 | - borrow of `v` occurs here
6LL | take(v); //~ ERROR cannot move out of `v` because it is borrowed
7 | ^ move out of `v` occurs here
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0505`.