Skip to content

Commit 041f113

Browse files
authored
Fixed error caused by combination of match_arm_blocks and control_brace_style
Fixes 5912 When `control_brace_style = "AlwaysNextLine"`, the code seems to always assume that `body_prefix` is `{`. This is however not the case when `match_arm_blocks = false`. This causes `block_sep` to introduce extra white space that causes the error. The fix was to check if `body_prefix` is empty before matching on `ControlBraceStyle::AlwaysNextLine`.
1 parent 81fe905 commit 041f113

File tree

4 files changed

+47
-1
lines changed

4 files changed

+47
-1
lines changed

src/matches.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,8 @@ fn rewrite_match_body(
451451
};
452452

453453
let block_sep = match context.config.control_brace_style() {
454-
ControlBraceStyle::AlwaysNextLine => format!("{}{}", alt_block_sep, body_prefix),
455454
_ if body_prefix.is_empty() => "".to_owned(),
455+
ControlBraceStyle::AlwaysNextLine => format!("{}{}", alt_block_sep, body_prefix),
456456
_ if forbid_same_line || !arrow_comment.is_empty() => {
457457
format!("{}{}", alt_block_sep, body_prefix)
458458
}

tests/rustfmt/main.rs

+16
Original file line numberDiff line numberDiff line change
@@ -184,3 +184,19 @@ fn dont_emit_ICE() {
184184
assert!(!stderr.contains("thread 'main' panicked"));
185185
}
186186
}
187+
188+
#[test]
189+
fn rustfmt_emits_error_when_control_brace_style_is_always_next_line() {
190+
// See also https://github.com/rust-lang/rustfmt/issues/5912
191+
let args = [
192+
"--config=color=Never",
193+
"--config",
194+
"control_brace_style=AlwaysNextLine",
195+
"--config",
196+
"match_arm_blocks=false",
197+
"tests/target/issue_5912.rs",
198+
];
199+
200+
let (_stdout, stderr) = rustfmt(&args);
201+
assert!(!stderr.contains("error[internal]: left behind trailing whitespace"))
202+
}

tests/source/issue_5912.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// rustfmt-match_arm_blocks: false
2+
// rustfmt-control_brace_style: AlwaysNextLine
3+
4+
fn foo() {
5+
match 0 {
6+
0 => {
7+
aaaaaaaaaaaaaaaaaaaaaaaa
8+
+ bbbbbbbbbbbbbbbbbbbbbbbbb
9+
+ bbbbbbbbbbbbbbbbbbbbbbbbb
10+
+ bbbbbbbbbbbbbbbbbbbbbbbbb
11+
+ bbbbbbbbbbbbbbbbbbbbbbbbb
12+
}
13+
_ => 2,
14+
}
15+
}

tests/target/issue_5912.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// rustfmt-match_arm_blocks: false
2+
// rustfmt-control_brace_style: AlwaysNextLine
3+
4+
fn foo() {
5+
match 0
6+
{
7+
0 =>
8+
aaaaaaaaaaaaaaaaaaaaaaaa
9+
+ bbbbbbbbbbbbbbbbbbbbbbbbb
10+
+ bbbbbbbbbbbbbbbbbbbbbbbbb
11+
+ bbbbbbbbbbbbbbbbbbbbbbbbb
12+
+ bbbbbbbbbbbbbbbbbbbbbbbbb,
13+
_ => 2,
14+
}
15+
}

0 commit comments

Comments
 (0)