Skip to content

Commit bf7bb56

Browse files
WeiTheShinobiytmimi
authored andcommitted
Prevent rustfmt from removing inner attributes in inline const blocks
Fixes 6158
1 parent 871113e commit bf7bb56

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

src/expr.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,17 @@ pub(crate) fn format_expr(
139139
| ast::ExprKind::While(..) => to_control_flow(expr, expr_type)
140140
.and_then(|control_flow| control_flow.rewrite(context, shape)),
141141
ast::ExprKind::ConstBlock(ref anon_const) => {
142-
Some(format!("const {}", anon_const.rewrite(context, shape)?))
142+
let rewrite = match anon_const.value.kind {
143+
ast::ExprKind::Block(ref block, opt_label) => {
144+
// Inner attributes are associated with the `ast::ExprKind::ConstBlock` node,
145+
// not the `ast::Block` node we're about to rewrite. To prevent dropping inner
146+
// attributes call `rewrite_block` directly.
147+
// See https://github.com/rust-lang/rustfmt/issues/6158
148+
rewrite_block(block, Some(&expr.attrs), opt_label, context, shape)?
149+
}
150+
_ => anon_const.rewrite(context, shape)?,
151+
};
152+
Some(format!("const {}", rewrite))
143153
}
144154
ast::ExprKind::Block(ref block, opt_label) => {
145155
match expr_type {

tests/target/issue_6158.rs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
fn main() {
2+
const {
3+
#![allow(clippy::assertions_on_constants)]
4+
5+
assert!(1 < 2);
6+
}
7+
}

0 commit comments

Comments
 (0)