]> git.proxmox.com Git - rustc.git/blame - src/test/ui/self/elision/ref-mut-struct.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / self / elision / ref-mut-struct.stderr
CommitLineData
dc9dc135 1error[E0623]: lifetime mismatch
60c5eb7d 2 --> $DIR/ref-mut-struct.rs:11:9
dc9dc135
XL
3 |
4LL | fn ref_Struct(self: &mut Struct, f: &u32) -> &u32 {
5 | ---- ----
6 | |
7 | this parameter and the return type are declared with different lifetimes...
8LL | f
9 | ^ ...but data from `f` is returned here
ee023bcb
FG
10 |
11 = note: each elided lifetime in input position becomes a distinct lifetime
12help: consider introducing a named lifetime parameter and update trait if needed
13 |
14LL | fn ref_Struct<'a>(self: &'a mut Struct, f: &'a u32) -> &u32 {
15 | ++++ ++ ++
dc9dc135
XL
16
17error[E0623]: lifetime mismatch
60c5eb7d 18 --> $DIR/ref-mut-struct.rs:15:9
dc9dc135
XL
19 |
20LL | fn box_ref_Struct(self: Box<&mut Struct>, f: &u32) -> &u32 {
21 | ---- ----
22 | |
23 | this parameter and the return type are declared with different lifetimes...
24LL | f
25 | ^ ...but data from `f` is returned here
ee023bcb
FG
26 |
27 = note: each elided lifetime in input position becomes a distinct lifetime
28help: consider introducing a named lifetime parameter and update trait if needed
29 |
30LL | fn box_ref_Struct<'a>(self: Box<&'a mut Struct>, f: &'a u32) -> &u32 {
31 | ++++ ++ ++
dc9dc135
XL
32
33error[E0623]: lifetime mismatch
60c5eb7d 34 --> $DIR/ref-mut-struct.rs:19:9
dc9dc135
XL
35 |
36LL | fn pin_ref_Struct(self: Pin<&mut Struct>, f: &u32) -> &u32 {
37 | ---- ----
38 | |
39 | this parameter and the return type are declared with different lifetimes...
40LL | f
41 | ^ ...but data from `f` is returned here
ee023bcb
FG
42 |
43 = note: each elided lifetime in input position becomes a distinct lifetime
44help: consider introducing a named lifetime parameter and update trait if needed
45 |
46LL | fn pin_ref_Struct<'a>(self: Pin<&'a mut Struct>, f: &'a u32) -> &u32 {
47 | ++++ ++ ++
dc9dc135
XL
48
49error[E0623]: lifetime mismatch
60c5eb7d 50 --> $DIR/ref-mut-struct.rs:23:9
dc9dc135
XL
51 |
52LL | fn box_box_ref_Struct(self: Box<Box<&mut Struct>>, f: &u32) -> &u32 {
53 | ---- ----
54 | |
55 | this parameter and the return type are declared with different lifetimes...
56LL | f
57 | ^ ...but data from `f` is returned here
ee023bcb
FG
58 |
59 = note: each elided lifetime in input position becomes a distinct lifetime
60help: consider introducing a named lifetime parameter and update trait if needed
61 |
62LL | fn box_box_ref_Struct<'a>(self: Box<Box<&'a mut Struct>>, f: &'a u32) -> &u32 {
63 | ++++ ++ ++
dc9dc135
XL
64
65error[E0623]: lifetime mismatch
60c5eb7d 66 --> $DIR/ref-mut-struct.rs:27:9
dc9dc135
XL
67 |
68LL | fn box_pin_ref_Struct(self: Box<Pin<&mut Struct>>, f: &u32) -> &u32 {
69 | ---- ----
70 | |
71 | this parameter and the return type are declared with different lifetimes...
72LL | f
73 | ^ ...but data from `f` is returned here
ee023bcb
FG
74 |
75 = note: each elided lifetime in input position becomes a distinct lifetime
76help: consider introducing a named lifetime parameter and update trait if needed
77 |
78LL | fn box_pin_ref_Struct<'a>(self: Box<Pin<&'a mut Struct>>, f: &'a u32) -> &u32 {
79 | ++++ ++ ++
dc9dc135
XL
80
81error: aborting due to 5 previous errors
82
60c5eb7d 83For more information about this error, try `rustc --explain E0623`.