Skip to content

Commit 876f698

Browse files
committed
Add the vis.visit_capture_by() in noop_visit_expr
1 parent 54ce034 commit 876f698

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/rustc_ast/src/mut_visit.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ pub fn noop_visit_expr<T: MutVisitor>(
14011401
}
14021402
ExprKind::Closure(box Closure {
14031403
binder,
1404-
capture_clause: _,
1404+
capture_clause,
14051405
constness,
14061406
asyncness,
14071407
movability: _,
@@ -1413,6 +1413,7 @@ pub fn noop_visit_expr<T: MutVisitor>(
14131413
vis.visit_closure_binder(binder);
14141414
visit_constness(constness, vis);
14151415
vis.visit_asyncness(asyncness);
1416+
vis.visit_capture_by(capture_clause);
14161417
vis.visit_fn_decl(fn_decl);
14171418
vis.visit_expr(body);
14181419
vis.visit_span(fn_decl_span);

0 commit comments

Comments
 (0)