rust/src/test/ui/regions/regions-addr-of-upvar-self.nll.stderr

51 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unsatisfied lifetime constraints
2018-09-06 21:57:05 -05:00
--> $DIR/regions-addr-of-upvar-self.rs:20:17
2018-08-08 07:28:26 -05:00
|
LL | let _f = || {
| -- lifetime `'1` represents this closure's body
LL | let p: &'static mut usize = &mut self.food; //~ ERROR cannot infer
2018-09-15 12:30:29 -05:00
| ^ type annotation requires that `'1` must outlive `'static`
2018-09-06 21:57:05 -05:00
|
= note: closure implements `FnMut`, so references to captured variables can't escape the closure
error: unsatisfied lifetime constraints
--> $DIR/regions-addr-of-upvar-self.rs:20:17
|
LL | pub fn chase_cat(&mut self) {
| --------- lifetime `'2` appears in the type of `self`
LL | let _f = || {
| -- lifetime `'1` represents this closure's body
LL | let p: &'static mut usize = &mut self.food; //~ ERROR cannot infer
2018-09-15 12:30:29 -05:00
| ^ type annotation requires that `'1` must outlive `'2`
|
= note: closure implements `FnMut`, so references to captured variables can't escape the closure
2018-08-08 07:28:26 -05:00
error: unsatisfied lifetime constraints
2018-09-15 12:30:29 -05:00
--> $DIR/regions-addr-of-upvar-self.rs:19:18
2018-08-08 07:28:26 -05:00
|
2018-09-15 12:30:29 -05: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; //~ ERROR cannot infer
LL | | *p = 3;
LL | | };
| |_________^ closure body requires that `'1` must outlive `'static`
2018-08-08 07:28:26 -05:00
error[E0597]: `self` does not live long enough
--> $DIR/regions-addr-of-upvar-self.rs:20:46
|
LL | let _f = || {
| -- value captured here
LL | let p: &'static mut usize = &mut self.food; //~ ERROR cannot infer
| ^^^^ borrowed value does not live long enough
...
LL | }
| - `self` dropped here while still borrowed
|
= note: borrowed value must be valid for the static lifetime...
2018-09-06 21:57:05 -05:00
error: aborting due to 4 previous errors
2018-08-08 07:28:26 -05:00
For more information about this error, try `rustc --explain E0597`.