Skip to content

Commit 8f4f214

Browse files
sins
1 parent b603965 commit 8f4f214

File tree

5 files changed

+40
-21
lines changed

5 files changed

+40
-21
lines changed

compiler/rustc_ast/src/ast.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,8 @@ pub struct QSelf {
16381638
}
16391639

16401640
/// A capture clause used in closures and `async` blocks.
1641-
#[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug, HashStable_Generic, Ord, PartialOrd)]
1641+
#[derive(Clone, Copy, PartialEq, Ord, Eq, PartialOrd, Debug)]
1642+
#[derive(Encodable, Decodable, HashStable_Generic)]
16421643
pub enum CaptureBy {
16431644
/// `move` keyword was not specified.
16441645
Ref,

compiler/rustc_ast_lowering/src/expr.rs

+16-4
Original file line numberDiff line numberDiff line change
@@ -223,14 +223,26 @@ impl<'hir> LoweringContext<'_, 'hir> {
223223
) = &peeled.kind
224224
{
225225
let coroutine_kind = match gen_kind {
226-
GenBlockKind::Async => CoroutineKind::Async { span: *span, closure_id: peeled.node_id(), return_impl_trait_id: self.next_node_id() },
227-
GenBlockKind::Gen => CoroutineKind::Gen { span: *span, closure_id: peeled.node_id(), return_impl_trait_id: self.next_node_id() },
228-
GenBlockKind::AsyncGen => CoroutineKind::AsyncGen { span: *span, closure_id: peeled.node_id(), return_impl_trait_id: self.next_node_id() },
226+
GenBlockKind::Async => CoroutineKind::Async {
227+
span: *span,
228+
closure_id: peeled.node_id(),
229+
return_impl_trait_id: self.next_node_id(),
230+
},
231+
GenBlockKind::Gen => CoroutineKind::Gen {
232+
span: *span,
233+
closure_id: peeled.node_id(),
234+
return_impl_trait_id: self.next_node_id(),
235+
},
236+
GenBlockKind::AsyncGen => CoroutineKind::AsyncGen {
237+
span: *span,
238+
closure_id: peeled.node_id(),
239+
return_impl_trait_id: self.next_node_id(),
240+
},
229241
};
230242
let id = self.next_node_id();
231243
self.lower_expr_coroutine_closure(
232244
binder,
233-
capture_clause.max(*gen_capture_clause),
245+
(*capture_clause).max(*gen_capture_clause),
234246
e.id,
235247
hir_id,
236248
coroutine_kind,
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
1-
error: captured variable cannot escape `FnMut` closure body
2-
--> $DIR/issue-69446-fnmut-capture.rs:19:17
1+
error: async closure does not implement `FnMut` because it captures state from its environment
2+
--> $DIR/issue-69446-fnmut-capture.rs:19:9
33
|
4-
LL | let mut x = Foo;
5-
| ----- variable defined here
6-
LL | bar(move || async {
7-
| _______________-_^
8-
| | |
9-
| | inferred to be a `FnMut` closure
10-
LL | | x.foo();
11-
| | - variable captured here
12-
LL | | });
13-
| |_____^ returns an `async` block that contains a reference to a captured variable, which then escapes the closure body
4+
LL | bar(move || async {
5+
| --- ^^^^^^^
6+
| |
7+
| required by a bound introduced by this call
148
|
15-
= note: `FnMut` closures only have access to their captured variables while they are executing...
16-
= note: ...therefore, they cannot allow references to captured variables to escape
9+
note: required by a bound in `bar`
10+
--> $DIR/issue-69446-fnmut-capture.rs:12:25
11+
|
12+
LL | async fn bar<T>(_: impl FnMut() -> T)
13+
| ^^^^^^^^^^^^ required by this bound in `bar`
1714

1815
error: aborting due to 1 previous error
1916

tests/ui/async-await/issue-70935-complex-spans.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ note: required because it appears within the type `NotSync`
1313
LL | struct NotSync(PhantomData<*mut ()>);
1414
| ^^^^^^^
1515
= note: required for `&NotSync` to implement `Send`
16+
= note: required because it appears within the type `(&NotSync,)`
1617
note: required because it's used within this closure
1718
--> $DIR/issue-70935-complex-spans.rs:19:13
1819
|
@@ -46,6 +47,7 @@ note: required because it appears within the type `NotSync`
4647
LL | struct NotSync(PhantomData<*mut ()>);
4748
| ^^^^^^^
4849
= note: required for `&NotSync` to implement `Send`
50+
= note: required because it appears within the type `(&NotSync,)`
4951
note: required because it's used within this closure
5052
--> $DIR/issue-70935-complex-spans.rs:19:13
5153
|
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
error[E0282]: type annotations needed
2+
--> $DIR/opaque-cast-field-access-in-future.rs:7:14
3+
|
4+
LL | &mut foo.bar;
5+
| ^^^ cannot infer type
6+
17
error[E0283]: type annotations needed
28
--> $DIR/opaque-cast-field-access-in-future.rs:22:17
39
|
@@ -6,6 +12,7 @@ LL | fn run() -> Foo<impl Future<Output = ()>> {
612
|
713
= note: cannot satisfy `_: Future`
814

9-
error: aborting due to 1 previous error
15+
error: aborting due to 2 previous errors
1016

11-
For more information about this error, try `rustc --explain E0283`.
17+
Some errors have detailed explanations: E0282, E0283.
18+
For more information about an error, try `rustc --explain E0282`.

0 commit comments

Comments
 (0)