rust/tests/ui/self/elision/ref-struct-async.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
3.9 KiB
Plaintext
Raw Normal View History

2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/ref-struct-async.rs:13: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
| |
| 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`
|
help: consider introducing a named lifetime parameter and update trait if needed
|
LL | async fn ref_Struct<'a>(self: &'a Struct, f: &'a u32) -> &u32 {
| ++++ ++ ++
2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/ref-struct-async.rs:18: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
| |
| 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`
|
help: consider introducing a named lifetime parameter and update trait if needed
|
LL | async fn box_ref_Struct<'a>(self: Box<&'a Struct>, f: &'a u32) -> &u32 {
| ++++ ++ ++
2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/ref-struct-async.rs:23:9
|
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
| |
| 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`
|
help: consider introducing a named lifetime parameter and update trait if needed
|
LL | async fn pin_ref_Struct<'a>(self: Pin<&'a Struct>, f: &'a u32) -> &u32 {
| ++++ ++ ++
2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/ref-struct-async.rs:28:9
|
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
| |
| 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`
|
help: consider introducing a named lifetime parameter and update trait if needed
|
LL | async fn box_box_ref_Struct<'a>(self: Box<Box<&'a Struct>>, f: &'a u32) -> &u32 {
| ++++ ++ ++
2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/ref-struct-async.rs:33:9
|
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
| |
| 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`
|
help: consider introducing a named lifetime parameter and update trait if needed
|
LL | async fn box_pin_Struct<'a>(self: Box<Pin<&'a Struct>>, f: &'a u32) -> &u32 {
| ++++ ++ ++
2020-01-11 17:18:58 +00:00
error: aborting due to 5 previous errors