Skip to content

Commit 0737d55

Browse files
ytmimicalebcartwright
authored andcommitted
Add changelog entry for match expr inner attribute fix with version=Two
1 parent 5cab54f commit 0737d55

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@
3131
```rust
3232
const _: () = builtin # offset_of(x, x);
3333
```
34+
- When using `version=Two` inner attributes in `match` expressions are correctly indented [#6147](https://github.com/rust-lang/rustfmt/issues/6147)
35+
```rust
36+
pub fn main() {
37+
match x {
38+
#![attr1]
39+
#![attr2]
40+
_ => (),
41+
}
42+
}
43+
```
3444

3545
[log crate]: https://crates.io/crates/log
3646
[unicode normalization form]: https://unicode.org/reports/tr15/

0 commit comments

Comments
 (0)