]> git.lizzy.rs Git - rust.git/blob - tests/ui/higher-rank-trait-bounds/hrtb-identity-fn-borrows.stderr
Rollup merge of #107201 - compiler-errors:confusing-async-fn-note, r=estebank
[rust.git] / tests / ui / higher-rank-trait-bounds / 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    |                    -- `x` is borrowed here
6 LL |     x = 5;
7    |     ^^^^^ `x` is assigned to here but it was already borrowed
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`.