]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0502.stderr
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / error-codes / E0502.stderr
1 error[E0502]: cannot borrow `*a` as mutable because it is also borrowed as immutable
2   --> $DIR/E0502.rs:4:5
3    |
4 LL |     let ref y = a;
5    |         ----- immutable borrow occurs here
6 LL |     bar(a);
7    |     ^^^^^^ mutable borrow occurs here
8 LL |     y.use_ref();
9    |     ----------- immutable borrow later used here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0502`.