From eb9043bc6739085bbe2fcd6d9d2c3f9346df22c8 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Tue, 26 Jun 2018 16:35:52 +0200 Subject: [PATCH] Fix rebase fallout --- src/librustc/hir/lowering.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/hir/lowering.rs b/src/librustc/hir/lowering.rs index cca5983e62b0..8e49ed237145 100644 --- a/src/librustc/hir/lowering.rs +++ b/src/librustc/hir/lowering.rs @@ -3598,7 +3598,7 @@ impl<'a> LoweringContext<'a> { ExprKind::Closure( capture_clause, asyncness, movability, ref decl, ref body, fn_decl_span ) => { - if let IsAsync::Async { async_closure_node_id, .. } = asyncness { + if let IsAsync::Async { closure_id, .. } = asyncness { let outer_decl = FnDecl { inputs: decl.inputs.clone(), output: FunctionRetTy::Default(fn_decl_span),