]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0505.stderr
Rollup merge of #89317 - JulianKnodt:precise_errors, r=BoxyUwU
[rust.git] / src / test / 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`.