]> git.proxmox.com Git - rustc.git/blob - src/test/ui/self/elision/lt-ref-self.base.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / self / elision / lt-ref-self.base.stderr
1 error[E0623]: lifetime mismatch
2 --> $DIR/lt-ref-self.rs:15:9
3 |
4 LL | fn ref_self(&self, 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 = note: each elided lifetime in input position becomes a distinct lifetime
12 help: consider introducing a named lifetime parameter and update trait if needed
13 |
14 LL | fn ref_self<'a>(&'a self, f: &'a u32) -> &u32 {
15 | ++++ ++ ++
16
17 error[E0623]: lifetime mismatch
18 --> $DIR/lt-ref-self.rs:23:9
19 |
20 LL | fn ref_Self(self: &Self, f: &u32) -> &u32 {
21 | ---- ----
22 | |
23 | this parameter and the return type are declared with different lifetimes...
24 LL | f
25 | ^ ...but data from `f` is returned here
26 |
27 = note: each elided lifetime in input position becomes a distinct lifetime
28 help: consider introducing a named lifetime parameter and update trait if needed
29 |
30 LL | fn ref_Self<'a>(self: &'a Self, f: &'a u32) -> &u32 {
31 | ++++ ++ ++
32
33 error[E0623]: lifetime mismatch
34 --> $DIR/lt-ref-self.rs:29:9
35 |
36 LL | fn box_ref_Self(self: Box<&Self>, f: &u32) -> &u32 {
37 | ---- ----
38 | |
39 | this parameter and the return type are declared with different lifetimes...
40 LL | f
41 | ^ ...but data from `f` is returned here
42 |
43 = note: each elided lifetime in input position becomes a distinct lifetime
44 help: consider introducing a named lifetime parameter and update trait if needed
45 |
46 LL | fn box_ref_Self<'a>(self: Box<&'a Self>, f: &'a u32) -> &u32 {
47 | ++++ ++ ++
48
49 error[E0623]: lifetime mismatch
50 --> $DIR/lt-ref-self.rs:35:9
51 |
52 LL | fn pin_ref_Self(self: Pin<&Self>, f: &u32) -> &u32 {
53 | ---- ----
54 | |
55 | this parameter and the return type are declared with different lifetimes...
56 LL | f
57 | ^ ...but data from `f` is returned here
58 |
59 = note: each elided lifetime in input position becomes a distinct lifetime
60 help: consider introducing a named lifetime parameter and update trait if needed
61 |
62 LL | fn pin_ref_Self<'a>(self: Pin<&'a Self>, f: &'a u32) -> &u32 {
63 | ++++ ++ ++
64
65 error[E0623]: lifetime mismatch
66 --> $DIR/lt-ref-self.rs:41:9
67 |
68 LL | fn box_box_ref_Self(self: Box<Box<&Self>>, f: &u32) -> &u32 {
69 | ---- ----
70 | |
71 | this parameter and the return type are declared with different lifetimes...
72 LL | f
73 | ^ ...but data from `f` is returned here
74 |
75 = note: each elided lifetime in input position becomes a distinct lifetime
76 help: consider introducing a named lifetime parameter and update trait if needed
77 |
78 LL | fn box_box_ref_Self<'a>(self: Box<Box<&'a Self>>, f: &'a u32) -> &u32 {
79 | ++++ ++ ++
80
81 error[E0623]: lifetime mismatch
82 --> $DIR/lt-ref-self.rs:47:9
83 |
84 LL | fn box_pin_Self(self: Box<Pin<&Self>>, f: &u32) -> &u32 {
85 | ---- ----
86 | |
87 | this parameter and the return type are declared with different lifetimes...
88 LL | f
89 | ^ ...but data from `f` is returned here
90 |
91 = note: each elided lifetime in input position becomes a distinct lifetime
92 help: consider introducing a named lifetime parameter and update trait if needed
93 |
94 LL | fn box_pin_Self<'a>(self: Box<Pin<&'a Self>>, f: &'a u32) -> &u32 {
95 | ++++ ++ ++
96
97 error: aborting due to 6 previous errors
98
99 For more information about this error, try `rustc --explain E0623`.