]> git.lizzy.rs Git - rust.git/blob - src/test/ui/self/elision/ref-struct.stderr
Rollup merge of #63055 - Mark-Simulacrum:save-analysis-clean-2, r=Xanewok
[rust.git] / src / test / ui / self / elision / ref-struct.stderr
1 error[E0623]: lifetime mismatch
2   --> $DIR/ref-struct.rs:12:9
3    |
4 LL |     fn ref_Struct(self: &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-struct.rs:16:9
13    |
14 LL |     fn box_ref_Struct(self: Box<&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-struct.rs:20:9
23    |
24 LL |     fn pin_ref_Struct(self: Pin<&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-struct.rs:24:9
33    |
34 LL |     fn box_box_ref_Struct(self: Box<Box<&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-struct.rs:28:9
43    |
44 LL |     fn box_pin_Struct(self: Box<Pin<&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