1
Fork 0

s/mt/mutability/

This commit is contained in:
Oli Scherer 2024-03-11 17:33:57 +00:00
parent d3514a036d
commit 926bfe5078
11 changed files with 28 additions and 21 deletions

View file

@ -77,7 +77,7 @@ pub enum DefKind {
ConstParam,
Static {
/// Whether it's a `static mut` or just a `static`.
mt: ast::Mutability,
mutability: ast::Mutability,
/// Whether it's an anonymous static generated for nested allocations.
nested: bool,
},