Skip to content

Commit 99abe44

Browse files
authored
rustfmt fmt
1 parent a642563 commit 99abe44

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tools/rustfmt/src/expr.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,9 @@ pub(crate) fn format_expr(
399399
}
400400
}
401401
ast::ExprKind::Underscore => Some("_".to_owned()),
402-
ast::ExprKind::FormatArgs(..) | ast::ExprKind::IncludedBytes(..) | ast::ExprKind::OffsetOf(..) => {
402+
ast::ExprKind::FormatArgs(..)
403+
| ast::ExprKind::IncludedBytes(..)
404+
| ast::ExprKind::OffsetOf(..) => {
403405
// These do not occur in the AST because macros aren't expanded.
404406
unreachable!()
405407
}

0 commit comments

Comments
 (0)