@@ -6,9 +6,9 @@ LL | fn f<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
6
6
| |
7
7
| lifetime `'a` defined here
8
8
LL | let mut x = foo::<&'a ()>;
9
- | ^^^^^^^^^^^^^ assignment requires that `'b ` must outlive `'a `
9
+ | ^^^^^^^^^^^^^ assignment requires that `'a ` must outlive `'b `
10
10
|
11
- = help: consider adding the following bound: `'b : 'a `
11
+ = help: consider adding the following bound: `'a : 'b `
12
12
= note: requirement occurs because of a function pointer to `foo`
13
13
= note: the function `foo` is invariant over the parameter `T`
14
14
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
@@ -22,9 +22,9 @@ LL | fn f<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
22
22
| lifetime `'a` defined here
23
23
LL | let mut x = foo::<&'a ()>;
24
24
LL | x = foo::<&'b ()>;
25
- | ^^^^^^^^^^^^^^^^^ assignment requires that `'a ` must outlive `'b `
25
+ | ^^^^^^^^^^^^^^^^^ assignment requires that `'b ` must outlive `'a `
26
26
|
27
- = help: consider adding the following bound: `'a : 'b `
27
+ = help: consider adding the following bound: `'b : 'a `
28
28
= note: requirement occurs because of a function pointer to `foo`
29
29
= note: the function `foo` is invariant over the parameter `T`
30
30
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
@@ -53,9 +53,9 @@ LL | fn i<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
53
53
| lifetime `'a` defined here
54
54
LL | let mut x = foo::<&'c ()>;
55
55
LL | x = foo::<&'b ()>;
56
- | ^^^^^^^^^^^^^^^^^ assignment requires that `'a ` must outlive `'b `
56
+ | ^^^^^^^^^^^^^^^^^ assignment requires that `'b ` must outlive `'a `
57
57
|
58
- = help: consider adding the following bound: `'a : 'b `
58
+ = help: consider adding the following bound: `'b : 'a `
59
59
= note: requirement occurs because of a function pointer to `foo`
60
60
= note: the function `foo` is invariant over the parameter `T`
61
61
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
@@ -69,9 +69,9 @@ LL | fn i<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
69
69
| lifetime `'a` defined here
70
70
...
71
71
LL | x = foo::<&'a ()>;
72
- | ^^^^^^^^^^^^^^^^^ assignment requires that `'b ` must outlive `'a `
72
+ | ^^^^^^^^^^^^^^^^^ assignment requires that `'a ` must outlive `'b `
73
73
|
74
- = help: consider adding the following bound: `'b : 'a `
74
+ = help: consider adding the following bound: `'a : 'b `
75
75
= note: requirement occurs because of a function pointer to `foo`
76
76
= note: the function `foo` is invariant over the parameter `T`
77
77
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
@@ -89,9 +89,9 @@ LL | fn j<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
89
89
| lifetime `'a` defined here
90
90
LL | let x = match true {
91
91
LL | true => foo::<&'b ()>,
92
- | ^^^^^^^^^^^^^ assignment requires that `'a ` must outlive `'b `
92
+ | ^^^^^^^^^^^^^ assignment requires that `'b ` must outlive `'a `
93
93
|
94
- = help: consider adding the following bound: `'a : 'b `
94
+ = help: consider adding the following bound: `'b : 'a `
95
95
= note: requirement occurs because of a function pointer to `foo`
96
96
= note: the function `foo` is invariant over the parameter `T`
97
97
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
@@ -105,9 +105,9 @@ LL | fn j<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
105
105
| lifetime `'a` defined here
106
106
...
107
107
LL | false => foo::<&'a ()>,
108
- | ^^^^^^^^^^^^^ assignment requires that `'b ` must outlive `'a `
108
+ | ^^^^^^^^^^^^^ assignment requires that `'a ` must outlive `'b `
109
109
|
110
- = help: consider adding the following bound: `'b : 'a `
110
+ = help: consider adding the following bound: `'a : 'b `
111
111
= note: requirement occurs because of a function pointer to `foo`
112
112
= note: the function `foo` is invariant over the parameter `T`
113
113
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
@@ -117,36 +117,33 @@ help: `'a` and `'b` must be the same: replace one with the other
117
117
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
118
118
119
119
error: lifetime may not live long enough
120
- --> $DIR/fn_def_coercion.rs:49:17
120
+ --> $DIR/fn_def_coercion.rs:50:18
121
121
|
122
122
LL | fn k<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
123
123
| -- -- lifetime `'c` defined here
124
124
| |
125
125
| lifetime `'a` defined here
126
- LL | let x = match true {
127
- LL | true => foo::<&'c ()>,
128
- | ^^^^^^^^^^^^^ assignment requires that `'a` must outlive `'c`
126
+ ...
127
+ LL | false => foo::<&'a ()>,
128
+ | ^^^^^^^^^^^^^ assignment requires that `'a` must outlive `'c`
129
129
|
130
130
= help: consider adding the following bound: `'a: 'c`
131
131
= note: requirement occurs because of a function pointer to `foo`
132
132
= note: the function `foo` is invariant over the parameter `T`
133
133
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
134
134
135
135
error: lifetime may not live long enough
136
- --> $DIR/fn_def_coercion.rs:50:18
136
+ --> $DIR/fn_def_coercion.rs:54:5
137
137
|
138
138
LL | fn k<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) {
139
139
| -- -- lifetime `'b` defined here
140
140
| |
141
141
| lifetime `'a` defined here
142
142
...
143
- LL | false => foo::<&'a ()>,
144
- | ^^^^^^^^^^^^^ assignment requires that `'b` must outlive `'a`
143
+ LL | x(b);
144
+ | ^^^^ argument requires that `'b` must outlive `'a`
145
145
|
146
146
= help: consider adding the following bound: `'b: 'a`
147
- = note: requirement occurs because of a function pointer to `foo`
148
- = note: the function `foo` is invariant over the parameter `T`
149
- = help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
150
147
151
148
help: the following changes may resolve your lifetime errors
152
149
|
0 commit comments