@@ -100,7 +100,6 @@ LL | let c = async || { println!("{}", *x.0); };
100
100
LL | outlives::<'a>(c());
101
101
LL | outlives::<'a>(call_once(c));
102
102
| ------------ argument requires that `x` is borrowed for `'a`
103
- ...
104
103
LL | }
105
104
| - `x` dropped here while still borrowed
106
105
@@ -114,23 +113,31 @@ LL | outlives::<'a>(call_once(c));
114
113
| ^^^^^^^^^^^^ lifetime `'a` required
115
114
116
115
error[E0597]: `c` does not live long enough
117
- --> $DIR/without-precise-captures-we-are-powerless.rs:43 :20
116
+ --> $DIR/without-precise-captures-we-are-powerless.rs:45 :20
118
117
|
119
- LL | fn through_field_and_ref<'a>(x: &S<'a>) {
120
- | -- lifetime `'a` defined here
121
- ...
118
+ LL | fn through_field_and_ref_move<'a>(x: &S<'a>) {
119
+ | -- lifetime `'a` defined here
122
120
LL | let c = async move || { println!("{}", *x.0); };
123
121
| - binding `c` declared here
124
122
LL | outlives::<'a>(c());
125
123
| ^--
126
124
| |
127
125
| borrowed value does not live long enough
128
126
| argument requires that `c` is borrowed for `'a`
129
- LL | // outlives::<'a>(call_once(c)); // FIXME(async_closures): Figure out why this fails
127
+ LL | outlives::<'a>(call_once(c));
130
128
LL | }
131
129
| - `c` dropped here while still borrowed
132
130
133
- error: aborting due to 9 previous errors
131
+ error[E0621]: explicit lifetime required in the type of `x`
132
+ --> $DIR/without-precise-captures-we-are-powerless.rs:46:20
133
+ |
134
+ LL | fn through_field_and_ref_move<'a>(x: &S<'a>) {
135
+ | ------ help: add explicit lifetime `'a` to the type of `x`: `&'a S<'a>`
136
+ ...
137
+ LL | outlives::<'a>(call_once(c));
138
+ | ^^^^^^^^^^^^ lifetime `'a` required
139
+
140
+ error: aborting due to 10 previous errors
134
141
135
142
Some errors have detailed explanations: E0505, E0597, E0621.
136
143
For more information about an error, try `rustc --explain E0505`.
0 commit comments