2016-10-26 16:10:39 +00:00
|
|
|
error[E0505]: cannot move out of `y` because it is borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/send-is-not-static-std-sync.rs:13:10
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2023-01-17 02:45:11 +00:00
|
|
|
LL | let y = Box::new(1);
|
|
|
|
| - binding `y` declared here
|
|
|
|
LL | let lock = Mutex::new(&x);
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | *lock.lock().unwrap() = &*y;
|
2019-04-22 07:40:08 +00:00
|
|
|
| --- borrow of `*y` occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | drop(y);
|
2016-10-26 16:10:39 +00:00
|
|
|
| ^ move out of `y` occurs here
|
2019-04-22 07:40:08 +00:00
|
|
|
...
|
|
|
|
LL | *lock.lock().unwrap() = &z;
|
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
|
|
|
| ----------- borrow later used here
|
2016-10-26 16:10:39 +00:00
|
|
|
|
2017-05-27 17:58:52 +00:00
|
|
|
error[E0597]: `z` does not live long enough
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/send-is-not-static-std-sync.rs:16:33
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let z = 2;
|
|
|
|
| - binding `z` declared here
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | *lock.lock().unwrap() = &z;
|
|
|
|
| ^^ borrowed value does not live long enough
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2017-12-14 01:27:23 +00:00
|
|
|
| - `z` dropped here while still borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
LL |
|
|
|
|
LL | lock.use_ref(); // (Mutex is #[may_dangle] so its dtor does not use `z` => needs explicit use)
|
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
|
|
|
| -------------- borrow later used here
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
|
|
error[E0505]: cannot move out of `y` because it is borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/send-is-not-static-std-sync.rs:27:10
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2023-01-17 02:45:11 +00:00
|
|
|
LL | let y = Box::new(1);
|
|
|
|
| - binding `y` declared here
|
|
|
|
LL | let lock = RwLock::new(&x);
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | *lock.write().unwrap() = &*y;
|
2019-04-22 07:40:08 +00:00
|
|
|
| --- borrow of `*y` occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | drop(y);
|
2016-10-26 16:10:39 +00:00
|
|
|
| ^ move out of `y` occurs here
|
2019-04-22 07:40:08 +00:00
|
|
|
...
|
|
|
|
LL | *lock.write().unwrap() = &z;
|
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
|
|
|
| ------------ borrow later used here
|
2016-10-26 16:10:39 +00:00
|
|
|
|
2017-05-27 17:58:52 +00:00
|
|
|
error[E0597]: `z` does not live long enough
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/send-is-not-static-std-sync.rs:30:34
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let z = 2;
|
|
|
|
| - binding `z` declared here
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | *lock.write().unwrap() = &z;
|
|
|
|
| ^^ borrowed value does not live long enough
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2017-12-14 01:27:23 +00:00
|
|
|
| - `z` dropped here while still borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
LL |
|
|
|
|
LL | lock.use_ref(); // (RwLock is #[may_dangle] so its dtor does not use `z` => needs explicit use)
|
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
|
|
|
| -------------- borrow later used here
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
|
|
error[E0505]: cannot move out of `y` because it is borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/send-is-not-static-std-sync.rs:43:10
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2023-01-17 02:45:11 +00:00
|
|
|
LL | let y = Box::new(1);
|
|
|
|
| - binding `y` declared here
|
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | tx.send(&*y);
|
2019-04-22 07:40:08 +00:00
|
|
|
| --- borrow of `*y` occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | drop(y);
|
2016-10-26 16:10:39 +00:00
|
|
|
| ^ move out of `y` occurs here
|
2019-04-22 07:40:08 +00:00
|
|
|
...
|
|
|
|
LL | tx.send(&z).unwrap();
|
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
|
|
|
| ----------- borrow later used here
|
2019-04-22 07:40:08 +00:00
|
|
|
|
|
|
|
error[E0597]: `z` does not live long enough
|
|
|
|
--> $DIR/send-is-not-static-std-sync.rs:46:17
|
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let z = 2;
|
|
|
|
| - binding `z` declared here
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | tx.send(&z).unwrap();
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
LL | }
|
|
|
|
| - `z` dropped here while still borrowed
|
|
|
|
...
|
|
|
|
LL | }
|
2020-09-02 07:40:56 +00:00
|
|
|
| - borrow might be used here, when `tx` is dropped and runs the `Drop` code for type `Sender`
|
2019-04-22 07:40:08 +00:00
|
|
|
|
|
|
|
|
= note: values in a scope are dropped in the opposite order they are defined
|
2016-10-26 16:10:39 +00:00
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2016-10-26 16:10:39 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0505, E0597.
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about an error, try `rustc --explain E0505`.
|