]> git.proxmox.com Git - rustc.git/blob - src/test/ui/self/elision/ref-mut-struct-async.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / self / elision / ref-mut-struct-async.stderr
1 error[E0623]: lifetime mismatch
2 --> $DIR/ref-mut-struct-async.rs:13:9
3 |
4 LL | async fn ref_Struct(self: &mut Struct, f: &u32) -> &u32 {
5 | ---- ----
6 | |
7 | this parameter and the return type are declared with different lifetimes...
8 LL | f
9 | ^ ...but data from `f` is returned here
10
11 error[E0623]: lifetime mismatch
12 --> $DIR/ref-mut-struct-async.rs:17:9
13 |
14 LL | async fn box_ref_Struct(self: Box<&mut Struct>, f: &u32) -> &u32 {
15 | ---- ----
16 | |
17 | this parameter and the return type are declared with different lifetimes...
18 LL | f
19 | ^ ...but data from `f` is returned here
20
21 error[E0623]: lifetime mismatch
22 --> $DIR/ref-mut-struct-async.rs:21:9
23 |
24 LL | async fn pin_ref_Struct(self: Pin<&mut Struct>, f: &u32) -> &u32 {
25 | ---- ----
26 | |
27 | this parameter and the return type are declared with different lifetimes...
28 LL | f
29 | ^ ...but data from `f` is returned here
30
31 error[E0623]: lifetime mismatch
32 --> $DIR/ref-mut-struct-async.rs:25:9
33 |
34 LL | async fn box_box_ref_Struct(self: Box<Box<&mut Struct>>, f: &u32) -> &u32 {
35 | ---- ----
36 | |
37 | this parameter and the return type are declared with different lifetimes...
38 LL | f
39 | ^ ...but data from `f` is returned here
40
41 error[E0623]: lifetime mismatch
42 --> $DIR/ref-mut-struct-async.rs:29:9
43 |
44 LL | async fn box_pin_ref_Struct(self: Box<Pin<&mut Struct>>, f: &u32) -> &u32 {
45 | ---- ----
46 | |
47 | this parameter and the return type are declared with different lifetimes...
48 LL | f
49 | ^ ...but data from `f` is returned here
50
51 error: aborting due to 5 previous errors
52
53 For more information about this error, try `rustc --explain E0623`.