2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
2024-05-07 19:45:51 +00:00
|
|
|
--> $DIR/lt-ref-self-async.rs:15:9
|
2019-10-03 04:20:51 -04:00
|
|
|
|
|
|
|
|
|
LL | async fn ref_self(&self, 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
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^ method was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2022-05-12 21:25:38 +02:00
|
|
|
|
|
|
|
|
|
help: consider introducing a named lifetime parameter and update trait if needed
|
|
|
|
|
|
|
2024-08-22 00:55:09 +00:00
|
|
|
LL | async fn ref_self<'b>(&self, f: &'b u32) -> &'b u32 {
|
|
|
|
|
| ++++ ++ ++
|
2019-08-13 09:13:50 -04:00
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2024-05-07 19:45:51 +00:00
|
|
|
--> $DIR/lt-ref-self-async.rs:22:9
|
2019-10-03 04:20:51 -04:00
|
|
|
|
|
|
|
|
|
LL | async fn ref_Self(self: &Self, 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
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^ method was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2022-05-12 21:25:38 +02:00
|
|
|
|
|
|
|
|
|
help: consider introducing a named lifetime parameter and update trait if needed
|
|
|
|
|
|
|
2024-08-22 00:55:09 +00:00
|
|
|
LL | async fn ref_Self<'b>(self: &Self, f: &'b u32) -> &'b u32 {
|
|
|
|
|
| ++++ ++ ++
|
2019-08-13 09:13:50 -04:00
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2024-05-07 19:45:51 +00:00
|
|
|
--> $DIR/lt-ref-self-async.rs:27:9
|
2019-10-03 04:20:51 -04:00
|
|
|
|
|
|
|
|
|
LL | async fn box_ref_Self(self: Box<&Self>, 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
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^ method was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2022-05-12 21:25:38 +02:00
|
|
|
|
|
|
|
|
|
help: consider introducing a named lifetime parameter and update trait if needed
|
|
|
|
|
|
|
2024-08-22 00:55:09 +00:00
|
|
|
LL | async fn box_ref_Self<'b>(self: Box<&Self>, f: &'b u32) -> &'b u32 {
|
|
|
|
|
| ++++ ++ ++
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
2024-05-07 19:45:51 +00:00
|
|
|
--> $DIR/lt-ref-self-async.rs:32:9
|
2019-10-03 04:20:51 -04:00
|
|
|
|
|
|
|
|
|
LL | async fn pin_ref_Self(self: Pin<&Self>, 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
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^ method was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2022-05-12 21:25:38 +02:00
|
|
|
|
|
|
|
|
|
help: consider introducing a named lifetime parameter and update trait if needed
|
|
|
|
|
|
|
2024-08-22 00:55:09 +00:00
|
|
|
LL | async fn pin_ref_Self<'b>(self: Pin<&Self>, f: &'b u32) -> &'b u32 {
|
|
|
|
|
| ++++ ++ ++
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
2024-05-07 19:45:51 +00:00
|
|
|
--> $DIR/lt-ref-self-async.rs:37:9
|
2019-10-03 04:20:51 -04:00
|
|
|
|
|
|
|
|
|
LL | async fn box_box_ref_Self(self: Box<Box<&Self>>, 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
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^ method was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2022-05-12 21:25:38 +02:00
|
|
|
|
|
|
|
|
|
help: consider introducing a named lifetime parameter and update trait if needed
|
|
|
|
|
|
|
2024-08-22 00:55:09 +00:00
|
|
|
LL | async fn box_box_ref_Self<'b>(self: Box<Box<&Self>>, f: &'b u32) -> &'b u32 {
|
|
|
|
|
| ++++ ++ ++
|
2019-08-13 09:13:50 -04:00
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2024-05-07 19:45:51 +00:00
|
|
|
--> $DIR/lt-ref-self-async.rs:42:9
|
2019-10-03 04:20:51 -04:00
|
|
|
|
|
|
|
|
|
LL | async fn box_pin_Self(self: Box<Pin<&Self>>, 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
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^ method was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
2022-05-12 21:25:38 +02:00
|
|
|
|
|
|
|
|
|
help: consider introducing a named lifetime parameter and update trait if needed
|
|
|
|
|
|
|
2024-08-22 00:55:09 +00:00
|
|
|
LL | async fn box_pin_Self<'b>(self: Box<Pin<&Self>>, f: &'b u32) -> &'b u32 {
|
|
|
|
|
| ++++ ++ ++
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2020-01-11 17:18:58 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2019-08-08 15:57:32 +02:00
|
|
|
|