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

53 lines
2.7 KiB
Plaintext
Raw Normal View History

2019-08-13 09:13:50 -04:00
error: lifetime may not live long enough
--> $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
| |
| let's call the lifetime of this reference `'2`
2019-10-03 04:20:51 -04:00
LL | f
2020-02-22 16:14:14 -06:00
| ^ method 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
--> $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
| |
| let's call the lifetime of this reference `'2`
2019-10-03 04:20:51 -04:00
LL | f
2020-02-22 16:14:14 -06:00
| ^ method 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
--> $DIR/ref-mut-struct-async.rs:21:9
|
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
| |
| let's call the lifetime of this reference `'2`
2019-10-03 04:20:51 -04:00
LL | f
2020-02-22 16:14:14 -06:00
| ^ method 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
--> $DIR/ref-mut-struct-async.rs:25:9
|
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
| |
| let's call the lifetime of this reference `'2`
2019-10-03 04:20:51 -04:00
LL | f
2020-02-22 16:14:14 -06:00
| ^ method 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
--> $DIR/ref-mut-struct-async.rs:29:9
|
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
| |
| let's call the lifetime of this reference `'2`
2019-10-03 04:20:51 -04:00
LL | f
2020-02-22 16:14:14 -06:00
| ^ method 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