]> git.proxmox.com Git - rustc.git/blame - tests/ui/higher-ranked/trait-bounds/hrtb-identity-fn-borrows.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / higher-ranked / trait-bounds / hrtb-identity-fn-borrows.stderr
CommitLineData
b7449926 1error[E0506]: cannot assign to `x` because it is borrowed
48663c56 2 --> $DIR/hrtb-identity-fn-borrows.rs:14:5
b7449926
XL
3 |
4LL | let y = f.call(&x);
9ffffee4 5 | -- `x` is borrowed here
532ac7d7 6LL | x = 5;
9ffffee4 7 | ^^^^^ `x` is assigned to here but it was already borrowed
b7449926
XL
8...
9LL | drop(y);
10 | - borrow later used here
11
4b012472 12error: aborting due to 1 previous error
b7449926
XL
13
14For more information about this error, try `rustc --explain E0506`.