]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0502.nll.stderr
New upstream version 1.28.0~beta.14+dfsg1
[rustc.git] / src / test / ui / error-codes / E0502.nll.stderr
CommitLineData
94b46f34
XL
1error[E0502]: cannot borrow `*a` as mutable because it is also borrowed as immutable
2 --> $DIR/E0502.rs:14:5
83c7162d 3 |
94b46f34
XL
4LL | let ref y = a;
5 | ----- immutable borrow occurs here
6LL | bar(a); //~ ERROR E0502
7 | ^^^^^^ mutable borrow occurs here
8LL | y.use_ref();
9 | - borrow later used here
83c7162d
XL
10
11error: aborting due to previous error
12
94b46f34 13For more information about this error, try `rustc --explain E0502`.