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 {
|
|
|
|
| ~~~~~~~~~~~~~~~
|
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>) {
|
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
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);
|
Use larger span for adjustments on method calls
Currently, we use a relatively 'small' span for THIR
expressions generated by an 'adjustment' (e.g. an autoderef,
autoborrow, unsizing). As a result, if a borrow generated
by an adustment ends up causing a borrowcheck error, for example:
```rust
let mut my_var = String::new();
let my_ref = &my_var
my_var.push('a');
my_ref;
```
then the span for the mutable borrow may end up referring
to only the base expression (e.g. `my_var`), rather than
the method call which triggered the mutable borrow
(e.g. `my_var.push('a')`)
Due to a quirk of the MIR borrowck implementation,
this doesn't always get exposed in migration mode,
but it does in many cases.
This commit makes THIR building consistently use 'larger'
spans for adjustment expressions
The intent of this change it make it clearer to users
when it's the specific way in which a variable is
used (for example, in a method call) that produdes
a borrowcheck error. For example, an error message
claiming that a 'mutable borrow occurs here' might
be confusing if it just points at a usage of a variable
(e.g. `my_var`), when no `&mut` is in sight. Pointing
at the entire expression should help to emphasize
that the method call itself is responsible for
the mutable borrow.
In several cases, this makes the `#![feature(nll)]` diagnostic
output match up exactly with the default (migration mode) output.
As a result, several `.nll.stderr` files end up getting removed
entirely.
2021-09-16 20:01:22 +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()
|
Use larger span for adjustments on method calls
Currently, we use a relatively 'small' span for THIR
expressions generated by an 'adjustment' (e.g. an autoderef,
autoborrow, unsizing). As a result, if a borrow generated
by an adustment ends up causing a borrowcheck error, for example:
```rust
let mut my_var = String::new();
let my_ref = &my_var
my_var.push('a');
my_ref;
```
then the span for the mutable borrow may end up referring
to only the base expression (e.g. `my_var`), rather than
the method call which triggered the mutable borrow
(e.g. `my_var.push('a')`)
Due to a quirk of the MIR borrowck implementation,
this doesn't always get exposed in migration mode,
but it does in many cases.
This commit makes THIR building consistently use 'larger'
spans for adjustment expressions
The intent of this change it make it clearer to users
when it's the specific way in which a variable is
used (for example, in a method call) that produdes
a borrowcheck error. For example, an error message
claiming that a 'mutable borrow occurs here' might
be confusing if it just points at a usage of a variable
(e.g. `my_var`), when no `&mut` is in sight. Pointing
at the entire expression should help to emphasize
that the method call itself is responsible for
the mutable borrow.
In several cases, this makes the `#![feature(nll)]` diagnostic
output match up exactly with the default (migration mode) output.
As a result, several `.nll.stderr` files end up getting removed
entirely.
2021-09-16 20:01:22 +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 {
|
|
|
|
| ~~~~~~~~~~~~~~~
|
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;
|
Use larger span for adjustments on method calls
Currently, we use a relatively 'small' span for THIR
expressions generated by an 'adjustment' (e.g. an autoderef,
autoborrow, unsizing). As a result, if a borrow generated
by an adustment ends up causing a borrowcheck error, for example:
```rust
let mut my_var = String::new();
let my_ref = &my_var
my_var.push('a');
my_ref;
```
then the span for the mutable borrow may end up referring
to only the base expression (e.g. `my_var`), rather than
the method call which triggered the mutable borrow
(e.g. `my_var.push('a')`)
Due to a quirk of the MIR borrowck implementation,
this doesn't always get exposed in migration mode,
but it does in many cases.
This commit makes THIR building consistently use 'larger'
spans for adjustment expressions
The intent of this change it make it clearer to users
when it's the specific way in which a variable is
used (for example, in a method call) that produdes
a borrowcheck error. For example, an error message
claiming that a 'mutable borrow occurs here' might
be confusing if it just points at a usage of a variable
(e.g. `my_var`), when no `&mut` is in sight. Pointing
at the entire expression should help to emphasize
that the method call itself is responsible for
the mutable borrow.
In several cases, this makes the `#![feature(nll)]` diagnostic
output match up exactly with the default (migration mode) output.
As a result, several `.nll.stderr` files end up getting removed
entirely.
2021-09-16 20:01:22 +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;
|
Use larger span for adjustments on method calls
Currently, we use a relatively 'small' span for THIR
expressions generated by an 'adjustment' (e.g. an autoderef,
autoborrow, unsizing). As a result, if a borrow generated
by an adustment ends up causing a borrowcheck error, for example:
```rust
let mut my_var = String::new();
let my_ref = &my_var
my_var.push('a');
my_ref;
```
then the span for the mutable borrow may end up referring
to only the base expression (e.g. `my_var`), rather than
the method call which triggered the mutable borrow
(e.g. `my_var.push('a')`)
Due to a quirk of the MIR borrowck implementation,
this doesn't always get exposed in migration mode,
but it does in many cases.
This commit makes THIR building consistently use 'larger'
spans for adjustment expressions
The intent of this change it make it clearer to users
when it's the specific way in which a variable is
used (for example, in a method call) that produdes
a borrowcheck error. For example, an error message
claiming that a 'mutable borrow occurs here' might
be confusing if it just points at a usage of a variable
(e.g. `my_var`), when no `&mut` is in sight. Pointing
at the entire expression should help to emphasize
that the method call itself is responsible for
the mutable borrow.
In several cases, this makes the `#![feature(nll)]` diagnostic
output match up exactly with the default (migration mode) output.
As a result, several `.nll.stderr` files end up getting removed
entirely.
2021-09-16 20:01:22 +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>) {
|
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
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`.
|