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