2018-08-08 12:28:26 +00:00
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/method-self-arg-2.rs:15:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let y = &mut x;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ------ mutable borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | Foo::bar(&x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^ immutable borrow occurs here
|
|
|
|
LL | y.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 `x` as mutable more than once at a time
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/method-self-arg-2.rs:20:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let y = &mut x;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ------ first mutable borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | Foo::baz(&mut x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^^^ second mutable borrow occurs here
|
2018-08-14 23:16:05 +00:00
|
|
|
LL | y.use_mut();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - first borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0499, E0502.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0499`.
|