Skip to content

Commit 30497b0

Browse files
authoredNov 2, 2024··
Rollup merge of #132488 - compiler-errors:more-fixmes-bye, r=jieyouxu
Remove or fix some more `FIXME(async_closure)` Self-explanatory
2 parents b9798d3 + 9e5e47f commit 30497b0

File tree

7 files changed

+24
-16
lines changed

7 files changed

+24
-16
lines changed
 

‎compiler/rustc_infer/src/infer/opaque_types/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,6 @@ where
432432
upvar.visit_with(self);
433433
}
434434

435-
// FIXME(async_closures): Is this the right signature to visit here?
436435
args.as_coroutine_closure().signature_parts_ty().visit_with(self);
437436
}
438437

‎tests/ui/async-await/async-closures/mangle.rs

-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
//@[v0] compile-flags: -Csymbol-mangling-version=v0
66
//@[legacy] compile-flags: -Csymbol-mangling-version=legacy -Zunstable-options
77

8-
// FIXME(async_closures): When `fn_sig_for_fn_abi` is fixed, remove this.
9-
//@ ignore-pass (test emits codegen-time warnings)
10-
118
#![feature(async_closure, noop_waker)]
129

1310
extern crate block_on;

‎tests/ui/async-await/async-closures/no-borrow-from-env.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ fn through_field_and_ref<'a>(x: &S<'a>) {
3838

3939
let c = async move || { println!("{}", *x.0); };
4040
outlives::<'a>(c());
41-
// outlives::<'a>(call_once(c)); // FIXME(async_closures): Figure out why this fails
41+
42+
// outlives::<'a>(call_once(c));
43+
// The above fails b/c the by-move coroutine of `c` captures `x` in its entirety.
44+
// Since we have not asserted that the borrow for `&S<'a>` outlives `'a`, it'll fail.
4245
}
4346

4447
fn main() {}

‎tests/ui/async-await/async-closures/not-fn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn main() {
99

1010
let mut x = 1;
1111
needs_fn(async || {
12-
//~^ ERROR async closure does not implement `FnMut` because it captures state from its environment
12+
//~^ ERROR async closure does not implement `FnMut` because it captures state from its environment
1313
x += 1;
1414
});
1515
}

‎tests/ui/async-await/async-closures/precise-captures.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ async fn async_main() {
126126
{
127127
let mut s = S { a: 1, b: Drop("drop first"), c: Drop("untouched") };
128128
let c = guidance!(async move || {
129-
// s.a = 2; // FIXME(async_closures): Figure out why this fails
129+
s.a = 2;
130130
drop(s.b);
131131
});
132132
s.c.0 = "uncaptured";
@@ -141,7 +141,7 @@ async fn async_main() {
141141
{
142142
let mut s = S { a: 1, b: Drop("drop first"), c: Drop("untouched") };
143143
let c = guidance!(async move || {
144-
// s.a = 2; // FIXME(async_closures): Figure out why this fails
144+
s.a = 2;
145145
drop(s.b);
146146
});
147147
s.c.0 = "uncaptured";

‎tests/ui/async-await/async-closures/without-precise-captures-we-are-powerless.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@ fn through_field_and_ref<'a>(x: &S<'a>) {
3838
let c = async || { println!("{}", *x.0); }; //~ ERROR `x` does not live long enough
3939
outlives::<'a>(c());
4040
outlives::<'a>(call_once(c)); //~ ERROR explicit lifetime required in the type of `x`
41+
}
4142

43+
fn through_field_and_ref_move<'a>(x: &S<'a>) {
4244
let c = async move || { println!("{}", *x.0); };
4345
outlives::<'a>(c()); //~ ERROR `c` does not live long enough
44-
// outlives::<'a>(call_once(c)); // FIXME(async_closures): Figure out why this fails
46+
outlives::<'a>(call_once(c)); //~ ERROR explicit lifetime required in the type of `x`
4547
}
4648

4749
fn main() {}

‎tests/ui/async-await/async-closures/without-precise-captures-we-are-powerless.stderr

+14-7
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ LL | let c = async || { println!("{}", *x.0); };
100100
LL | outlives::<'a>(c());
101101
LL | outlives::<'a>(call_once(c));
102102
| ------------ argument requires that `x` is borrowed for `'a`
103-
...
104103
LL | }
105104
| - `x` dropped here while still borrowed
106105

@@ -114,23 +113,31 @@ LL | outlives::<'a>(call_once(c));
114113
| ^^^^^^^^^^^^ lifetime `'a` required
115114

116115
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
118117
|
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
122120
LL | let c = async move || { println!("{}", *x.0); };
123121
| - binding `c` declared here
124122
LL | outlives::<'a>(c());
125123
| ^--
126124
| |
127125
| borrowed value does not live long enough
128126
| 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));
130128
LL | }
131129
| - `c` dropped here while still borrowed
132130

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
134141

135142
Some errors have detailed explanations: E0505, E0597, E0621.
136143
For more information about an error, try `rustc --explain E0505`.

0 commit comments

Comments
 (0)
Please sign in to comment.