]> git.proxmox.com Git - rustc.git/blame - src/test/ui/hrtb/hrtb-identity-fn-borrows.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / hrtb / 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);
5 | -- borrow of `x` occurs here
532ac7d7 6LL | x = 5;
b7449926
XL
7 | ^^^^^ assignment to borrowed `x` occurs here
8...
9LL | drop(y);
10 | - borrow later used here
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0506`.