This commit is contained in:
Nick Cameron 2018-04-09 09:54:07 +12:00
parent 45629dbdd6
commit 7822d0c921

View file

@ -173,13 +173,7 @@ pub fn format_expr(
},
ast::ExprKind::Closure(capture, movability, ref fn_decl, ref body, _) => {
closures::rewrite_closure(
capture,
movability,
fn_decl,
body,
expr.span,
context,
shape,
capture, movability, fn_decl, body, expr.span, context, shape,
)
}
ast::ExprKind::Try(..)