2019-01-27 11:03:21 +00:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/regions-addr-of-upvar-self.rs:8:20
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
|
|
|
LL | let _f = || {
|
|
|
|
| -- lifetime `'1` represents this closure's body
|
|
|
|
LL | let p: &'static mut usize = &mut self.food;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ type annotation requires that `'1` must outlive `'static`
|
|
|
|
|
|
|
|
|
= note: closure implements `FnMut`, so references to captured variables can't escape the closure
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/regions-addr-of-upvar-self.rs:8:20
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
|
|
|
LL | pub fn chase_cat(&mut self) {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
|
|
|
LL | let _f = || {
|
|
|
|
LL | let p: &'static mut usize = &mut self.food;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ type annotation requires that `'1` must outlive `'static`
|
|
|
|
|
|
|
|
error[E0597]: `self` does not live long enough
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/regions-addr-of-upvar-self.rs:8:46
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
2024-04-18 20:41:43 +00:00
|
|
|
LL | pub fn chase_cat(&mut self) {
|
|
|
|
| --------- binding `self` declared here
|
2019-01-27 11:03:21 +00:00
|
|
|
LL | let _f = || {
|
|
|
|
| -- value captured here
|
|
|
|
LL | let p: &'static mut usize = &mut self.food;
|
2021-05-02 08:01:45 +00:00
|
|
|
| ------------------ ^^^^^^^^^ borrowed value does not live long enough
|
2019-01-27 11:03:21 +00:00
|
|
|
| |
|
|
|
|
| type annotation requires that `self` is borrowed for `'static`
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - `self` dropped here while still borrowed
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|