2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:53:24
|
2016-11-08 06:21:53 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let __isize = &mut x.y;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^ cannot borrow as mutable
|
2023-01-01 08:06:31 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | fn deref_mut_field1(mut x: Own<Point>) {
|
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:65:10
|
2016-11-08 06:21:53 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | &mut x.y
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
2022-12-29 05:52:57 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be a mutable reference
|
|
|
|
|
|
|
|
|
LL | fn deref_extend_mut_field1(x: &mut Own<Point>) -> &mut isize {
|
2023-04-19 07:50:08 +00:00
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
|
|
|
error[E0499]: cannot borrow `*x` as mutable more than once at a time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:78:19
|
2016-11-08 06:21:53 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let _x = &mut x.x;
|
2016-11-08 06:21:53 +00:00
|
|
|
| - first mutable borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _y = &mut x.y;
|
2016-11-08 06:21:53 +00:00
|
|
|
| ^ second mutable borrow occurs here
|
2018-11-05 12:07:51 +00:00
|
|
|
LL | use_mut(_x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- first borrow later used here
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:88:5
|
2016-11-08 06:21:53 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x.y = 3;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^ cannot borrow as mutable
|
2023-01-01 08:06:31 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | fn assign_field1<'a>(mut x: Own<Point>) {
|
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:92:5
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x.y = 3;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
2022-12-29 05:52:57 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be a mutable reference
|
|
|
|
|
|
|
|
|
LL | fn assign_field2<'a>(x: &'a mut Own<Point>) {
|
2023-04-19 07:29:28 +00:00
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
|
|
|
error[E0499]: cannot borrow `*x` as mutable more than once at a time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:101:5
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
|
|
|
LL | let _p: &mut Point = &mut **x;
|
|
|
|
| -- first mutable borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x.y = 3;
|
2018-02-23 00:42:32 +00:00
|
|
|
| ^ second mutable borrow occurs here
|
2018-11-05 12:07:51 +00:00
|
|
|
LL | use_mut(_p);
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- first borrow later used here
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:109:5
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x.set(0, 0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| ^ cannot borrow as mutable
|
2023-01-01 08:06:31 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | fn deref_mut_method1(mut x: Own<Point>) {
|
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:121:5
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x.y_mut()
|
2023-06-22 20:30:23 +00:00
|
|
|
| ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
2022-12-29 05:52:57 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be a mutable reference
|
|
|
|
|
|
|
|
|
LL | fn deref_extend_mut_method1(x: &mut Own<Point>) -> &mut isize {
|
2023-04-19 07:50:08 +00:00
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:129:6
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | *x.y_mut() = 3;
|
2023-06-22 20:30:23 +00:00
|
|
|
| ^ cannot borrow as mutable
|
2023-01-01 08:06:31 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | fn assign_method1<'a>(mut x: Own<Point>) {
|
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-borrow-overloaded-auto-deref-mut.rs:133:6
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | *x.y_mut() = 3;
|
2023-06-22 20:30:23 +00:00
|
|
|
| ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
2022-12-29 05:52:57 +00:00
|
|
|
|
|
|
|
|
help: consider changing this to be a mutable reference
|
|
|
|
|
|
|
|
|
LL | fn assign_method2<'a>(x: &'a mut Own<Point>) {
|
2023-04-19 07:29:28 +00:00
|
|
|
| +++
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to 10 previous errors
|
2016-11-08 06:21:53 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0499, E0596.
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about an error, try `rustc --explain E0499`.
|