2018-08-08 07:28:26 -05:00
|
|
|
error[E0502]: cannot borrow `*f` as immutable because it is also borrowed as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:37:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &mut f[&s];
|
|
|
|
| - mutable borrow occurs here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let q = &f[&s];
|
2018-08-14 18:16:05 -05:00
|
|
|
| ^ immutable borrow occurs here
|
|
|
|
LL | p.use_mut();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - mutable borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0499]: cannot borrow `*f` as mutable more than once at a time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:43:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &mut f[&s];
|
|
|
|
| - first mutable borrow occurs here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let q = &mut f[&s];
|
2018-08-14 18:16:05 -05:00
|
|
|
| ^ second mutable borrow occurs here
|
|
|
|
LL | p.use_mut();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - first borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0499]: cannot borrow `f.foo` as mutable more than once at a time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:53:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &mut f.foo[&s];
|
|
|
|
| ----- first mutable borrow occurs here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let q = &mut f.foo[&s];
|
2018-08-14 18:16:05 -05:00
|
|
|
| ^^^^^ second mutable borrow occurs here
|
|
|
|
LL | p.use_mut();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - first borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `f.foo` as mutable because it is also borrowed as immutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:65:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &f.foo[&s];
|
|
|
|
| ----- immutable borrow occurs here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let q = &mut f.foo[&s];
|
2018-08-14 18:16:05 -05:00
|
|
|
| ^^^^^ mutable borrow occurs here
|
|
|
|
LL | p.use_ref();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - immutable borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `f.foo` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:71:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &f.foo[&s];
|
2023-01-14 21:06:44 -06:00
|
|
|
| ----- `f.foo` is borrowed here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | f.foo = g;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^^^^ `f.foo` is assigned to here but it was already borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | p.use_ref();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*f` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:77:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &f.foo[&s];
|
2023-01-14 21:06:44 -06:00
|
|
|
| ----- `*f` is borrowed here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | *f = g;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^ `*f` is assigned to here but it was already borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | p.use_ref();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `f.foo` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:83:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &mut f.foo[&s];
|
2023-01-14 21:06:44 -06:00
|
|
|
| ----- `f.foo` is borrowed here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | f.foo = g;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^^^^ `f.foo` is assigned to here but it was already borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | p.use_mut();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*f` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-overloaded-index-autoderef.rs:89:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-08-14 18:16:05 -05:00
|
|
|
LL | let p = &mut f.foo[&s];
|
2023-01-14 21:06:44 -06:00
|
|
|
| ----- `*f` is borrowed here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | *f = g;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^^ `*f` is assigned to here but it was already borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | p.use_mut();
|
2023-06-22 15:30:23 -05:00
|
|
|
| - borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0499, E0502, E0506.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0499`.
|