Document fix for retaining inner attributes on const blocks
This commit is contained in:
parent
9748af80c6
commit
e2feea47bc
10
CHANGELOG.md
10
CHANGELOG.md
@ -48,6 +48,16 @@
|
|||||||
builtin # type_ascribe(10, usize)
|
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
|
### Changed
|
||||||
|
Loading…
Reference in New Issue
Block a user