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