2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
2019-09-09 15:27:33 -07:00
|
|
|
--> $DIR/ref-mut-struct-async.rs:13:9
|
2019-08-13 09:13:50 -04:00
|
|
|
|
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | async fn ref_Struct(self: &mut Struct, f: &u32) -> &u32 {
|
2019-11-25 12:36:53 -06:00
|
|
|
| - - let's call the lifetime of this reference `'1`
|
2019-10-03 04:20:51 -04:00
|
|
|
| |
|
2019-11-23 15:11:35 -06:00
|
|
|
| let's call the lifetime of this reference `'2`
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | f
|
2019-11-23 15:11:35 -06:00
|
|
|
| ^ function was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2019-08-13 09:13:50 -04:00
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2019-09-09 15:27:33 -07:00
|
|
|
--> $DIR/ref-mut-struct-async.rs:17:9
|
2019-08-13 09:13:50 -04:00
|
|
|
|
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | async fn box_ref_Struct(self: Box<&mut Struct>, f: &u32) -> &u32 {
|
2019-11-25 12:36:53 -06:00
|
|
|
| - - let's call the lifetime of this reference `'1`
|
2019-10-03 04:20:51 -04:00
|
|
|
| |
|
2019-11-23 15:11:35 -06:00
|
|
|
| let's call the lifetime of this reference `'2`
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | f
|
2019-11-23 15:11:35 -06:00
|
|
|
| ^ function was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2019-08-13 09:13:50 -04:00
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2019-09-09 15:27:33 -07:00
|
|
|
--> $DIR/ref-mut-struct-async.rs:21:9
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | async fn pin_ref_Struct(self: Pin<&mut Struct>, f: &u32) -> &u32 {
|
2019-11-25 12:36:53 -06:00
|
|
|
| - - let's call the lifetime of this reference `'1`
|
2019-10-03 04:20:51 -04:00
|
|
|
| |
|
2019-11-23 15:11:35 -06:00
|
|
|
| let's call the lifetime of this reference `'2`
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | f
|
2019-11-23 15:11:35 -06:00
|
|
|
| ^ function was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
2019-09-09 15:27:33 -07:00
|
|
|
--> $DIR/ref-mut-struct-async.rs:25:9
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | async fn box_box_ref_Struct(self: Box<Box<&mut Struct>>, f: &u32) -> &u32 {
|
2019-11-25 12:36:53 -06:00
|
|
|
| - - let's call the lifetime of this reference `'1`
|
2019-10-03 04:20:51 -04:00
|
|
|
| |
|
2019-11-23 15:11:35 -06:00
|
|
|
| let's call the lifetime of this reference `'2`
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | f
|
2019-11-23 15:11:35 -06:00
|
|
|
| ^ function was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
2019-09-09 15:27:33 -07:00
|
|
|
--> $DIR/ref-mut-struct-async.rs:29:9
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | async fn box_pin_ref_Struct(self: Box<Pin<&mut Struct>>, f: &u32) -> &u32 {
|
2019-11-25 12:36:53 -06:00
|
|
|
| - - let's call the lifetime of this reference `'1`
|
2019-10-03 04:20:51 -04:00
|
|
|
| |
|
2019-11-23 15:11:35 -06:00
|
|
|
| let's call the lifetime of this reference `'2`
|
2019-10-03 04:20:51 -04:00
|
|
|
LL | f
|
2019-11-23 15:11:35 -06:00
|
|
|
| ^ function was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2020-01-11 17:18:58 +00:00
|
|
|
error: aborting due to 5 previous errors
|
2019-08-08 15:57:32 +02:00
|
|
|
|