summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0502.stderr
blob: e578cffe56463d6ea1b3adc4ebeda46a737ba80b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0502]: cannot borrow `*a` as mutable because `a` is also borrowed as immutable
  --> $DIR/E0502.rs:14:9
   |
13 |     let ref y = a;
   |         ----- immutable borrow occurs here
14 |     bar(a); //~ ERROR E0502
   |         ^ mutable borrow occurs here
15 | }
   | - immutable borrow ends here

error: aborting due to previous error