Skip to content

Commit 23c11f3

Browse files
Febriananda Wida Pramuditaytmimi
Febriananda Wida Pramudita
authored andcommitted
rename file and remove unecessary file and add testcase
1 parent 6540304 commit 23c11f3

File tree

5 files changed

+39
-7
lines changed

5 files changed

+39
-7
lines changed

src/matches.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,15 @@ pub(crate) fn rewrite_match(
103103
let inner_attrs_str = if inner_attrs.is_empty() {
104104
String::new()
105105
} else {
106-
inner_attrs
107-
.rewrite(context, shape.block_indent(context.config.tab_spaces()))
108-
.map(|s| format!("{}{}\n", nested_indent_str, s))?
106+
if context.config.version() == Version::One {
107+
inner_attrs
108+
.rewrite(context, shape)
109+
.map(|s| format!("{}{}\n", nested_indent_str, s))?
110+
} else {
111+
inner_attrs
112+
.rewrite(context, shape.block_indent(context.config.tab_spaces()))
113+
.map(|s| format!("{}{}\n", nested_indent_str, s))?
114+
}
109115
};
110116

111117
let open_brace_pos = if inner_attrs.is_empty() {

tests/source/issue-6147/expect_changed.rs tests/source/issue-6147/case_rustfmt_v1.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rustfmt-version: One
2+
13
pub fn main() {
24
let a = Some(12);
35
match a {
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// rustfmt-version: Two
2+
3+
pub fn main() {
4+
let a = Some(12);
5+
match a {
6+
#![attr1]
7+
#![attr2]
8+
#![attr3]
9+
_ => None,
10+
}
11+
12+
{
13+
match a {
14+
#![attr1]
15+
#![attr2]
16+
#![attr3]
17+
_ => None,
18+
}
19+
}
20+
}

tests/target/issue-6147/expect_not_changed.rs tests/target/issue-6147/case_rustfmt_v1.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1+
// rustfmt-version: One
2+
13
pub fn main() {
24
let a = Some(12);
35
match a {
46
#![attr1]
5-
#![attr2]
6-
#![attr3]
7+
#![attr2]
8+
#![attr3]
79
_ => None,
810
}
911

1012
{
1113
match a {
1214
#![attr1]
13-
#![attr2]
14-
#![attr3]
15+
#![attr2]
16+
#![attr3]
1517
_ => None,
1618
}
1719
}

tests/target/issue-6147/expect_changed.rs tests/target/issue-6147/case_rustfmt_v2.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rustfmt-version: Two
2+
13
pub fn main() {
24
let a = Some(12);
35
match a {

0 commit comments

Comments
 (0)