]> git.proxmox.com Git - rustc.git/blame - src/test/ui/hrtb/hrtb-identity-fn-borrows.ast.nll.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / hrtb / hrtb-identity-fn-borrows.ast.nll.stderr
CommitLineData
b7449926 1error[E0506]: cannot assign to `x` because it is borrowed
0731742a 2 --> $DIR/hrtb-identity-fn-borrows.rs:17:5
b7449926
XL
3 |
4LL | let y = f.call(&x);
5 | -- borrow of `x` occurs here
6LL | x = 5; //[ast]~ ERROR cannot assign
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`.