rust/tests/ui/borrowck/borrowck-overloaded-index-autoderef.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
3.0 KiB
Plaintext
Raw Normal View History

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
|
LL | let p = &mut f[&s];
| - mutable borrow occurs here
2019-03-09 06:03:44 -06:00
LL | let q = &f[&s];
| ^ immutable borrow occurs here
LL | p.use_mut();
| - 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
|
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];
| ^ second mutable borrow occurs here
LL | p.use_mut();
| - 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
|
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];
| ^^^^^ second mutable borrow occurs here
LL | p.use_mut();
| - 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
|
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];
| ^^^^^ mutable borrow occurs here
LL | p.use_ref();
| - 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
|
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
LL | p.use_ref();
| - 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
|
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
LL | p.use_ref();
| - 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
|
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
LL | p.use_mut();
| - 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
|
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
LL | p.use_mut();
| - borrow later used here
2018-08-08 07:28:26 -05:00
error: aborting due to 8 previous errors
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`.