We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a642563 commit 99abe44Copy full SHA for 99abe44
src/tools/rustfmt/src/expr.rs
@@ -399,7 +399,9 @@ pub(crate) fn format_expr(
399
}
400
401
ast::ExprKind::Underscore => Some("_".to_owned()),
402
- ast::ExprKind::FormatArgs(..) | ast::ExprKind::IncludedBytes(..) | ast::ExprKind::OffsetOf(..) => {
+ ast::ExprKind::FormatArgs(..)
403
+ | ast::ExprKind::IncludedBytes(..)
404
+ | ast::ExprKind::OffsetOf(..) => {
405
// These do not occur in the AST because macros aren't expanded.
406
unreachable!()
407
0 commit comments