2018-02-07 21:35:35 -06:00
|
|
|
error[E0502]: cannot borrow `*a` as mutable because `a` is also borrowed as immutable
|
|
|
|
--> $DIR/E0502.rs:14:9
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let ref y = a;
|
2018-02-07 21:35:35 -06:00
|
|
|
| ----- immutable borrow occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | bar(a); //~ ERROR E0502
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^ mutable borrow occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2018-02-07 21:35:35 -06:00
|
|
|
| - immutable borrow ends here
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0502"
|