Skip to content

Commit eb9043b

Browse files
committed
Fix rebase fallout
1 parent 0e775a3 commit eb9043b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/hir/lowering.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3598,7 +3598,7 @@ impl<'a> LoweringContext<'a> {
35983598
ExprKind::Closure(
35993599
capture_clause, asyncness, movability, ref decl, ref body, fn_decl_span
36003600
) => {
3601-
if let IsAsync::Async { async_closure_node_id, .. } = asyncness {
3601+
if let IsAsync::Async { closure_id, .. } = asyncness {
36023602
let outer_decl = FnDecl {
36033603
inputs: decl.inputs.clone(),
36043604
output: FunctionRetTy::Default(fn_decl_span),

0 commit comments

Comments
 (0)