Document fix for retaining inner attributes on const blocks

This commit is contained in:
Yacin Tmimi 2024-06-18 17:00:38 -04:00 committed by Caleb Cartwright
parent 9748af80c6
commit e2feea47bc

View File

@ -48,6 +48,16 @@
builtin # type_ascribe(10, usize)
}
```
- rustfmt no longer removes inner attributes from inline const blocks [#6158](https://github.com/rust-lang/rustfmt/issues/6158)
```rust
fn main() {
const {
#![allow(clippy::assertions_on_constants)]
assert!(1 < 2);
}
}
```
### Changed