]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hrtb/hrtb-identity-fn-borrows.stderr
Merge commit 'd7b5cbf065b88830ca519adcb73fad4c0d24b1c7' into clippyup
[rust.git] / src / test / ui / hrtb / hrtb-identity-fn-borrows.stderr
1 error[E0506]: cannot assign to `x` because it is borrowed
2   --> $DIR/hrtb-identity-fn-borrows.rs:14:5
3    |
4 LL |     let y = f.call(&x);
5    |                    -- borrow of `x` occurs here
6 LL |     x = 5;
7    |     ^^^^^ assignment to borrowed `x` occurs here
8 ...
9 LL |     drop(y);
10    |          - borrow later used here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0506`.