rust/src/test/ui/self/elision/ref-struct-async.nll.stderr

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

53 lines
2.7 KiB
Plaintext
Raw Normal View History

2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
--> $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
| |
| 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
--> $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
| |
| 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
--> $DIR/ref-struct-async.rs:28: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`
2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
--> $DIR/ref-struct-async.rs:34: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`
2019-08-13 13:13:50 +00:00
error: lifetime may not live long enough
--> $DIR/ref-struct-async.rs:40: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`
2020-01-11 17:18:58 +00:00
error: aborting due to 5 previous errors