]> git.proxmox.com Git - rustc.git/blob - tests/ui/error-codes/E0505.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / error-codes / E0505.stderr
1 error[E0505]: cannot move out of `x` because it is borrowed
2 --> $DIR/E0505.rs:9:13
3 |
4 LL | let _ref_to_val: &Value = &x;
5 | -- borrow of `x` occurs here
6 LL | eat(x);
7 | ^ move out of `x` occurs here
8 LL | _ref_to_val.use_ref();
9 | --------------------- borrow later used here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0505`.