diff options
Diffstat (limited to 'src/expr.rs')
| -rw-r--r-- | src/expr.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/expr.rs b/src/expr.rs index 14ba8d0f7a0..d2ae5ba94e1 100644 --- a/src/expr.rs +++ b/src/expr.rs @@ -288,9 +288,7 @@ pub fn format_expr( } // We do not format these expressions yet, but they should still // satisfy our width restrictions. - ast::ExprKind::InPlace(..) | ast::ExprKind::InlineAsm(..) => { - Some(context.snippet(expr.span).to_owned()) - } + ast::ExprKind::InlineAsm(..) => Some(context.snippet(expr.span).to_owned()), ast::ExprKind::Catch(ref block) => { if let rw @ Some(_) = rewrite_single_line_block(context, "do catch ", block, Some(&expr.attrs), shape) |
