Skip to content

Commit 1bbfb76

Browse files
committed
Add ErrorGuaranteed to ast::ExprKind::Err
1 parent 7d82dd0 commit 1bbfb76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ pub(crate) fn format_expr(
404404
// These do not occur in the AST because macros aren't expanded.
405405
unreachable!()
406406
}
407-
ast::ExprKind::Err | ast::ExprKind::Dummy => None,
407+
ast::ExprKind::Err(_) | ast::ExprKind::Dummy => None,
408408
};
409409

410410
expr_rw

src/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ pub(crate) fn is_block_expr(context: &RewriteContext<'_>, expr: &ast::Expr, repr
498498
| ast::ExprKind::Cast(..)
499499
| ast::ExprKind::Continue(..)
500500
| ast::ExprKind::Dummy
501-
| ast::ExprKind::Err
501+
| ast::ExprKind::Err(_)
502502
| ast::ExprKind::Field(..)
503503
| ast::ExprKind::IncludedBytes(..)
504504
| ast::ExprKind::InlineAsm(..)

0 commit comments

Comments
 (0)