mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
Added case for const
This commit is contained in:
@@ -389,6 +389,7 @@ fn change_visibility(&mut self, record_fields: Vec<SyntaxNode>) {
|
||||
| SyntaxKind::ENUM_KW
|
||||
| SyntaxKind::TRAIT_KW
|
||||
| SyntaxKind::TYPE_KW
|
||||
| SyntaxKind::CONST_KW
|
||||
| SyntaxKind::MOD_KW => true,
|
||||
// If we didn't find a keyword, we want to cover the record fields in a struct
|
||||
SyntaxKind::NAME => true,
|
||||
@@ -1682,7 +1683,10 @@ enum DocumentedEnum {
|
||||
A,
|
||||
/// Another variant
|
||||
B { x: i32, y: i32 }
|
||||
}$0
|
||||
}
|
||||
|
||||
/// Documented const
|
||||
const MY_CONST: i32 = 0;$0
|
||||
",
|
||||
r"
|
||||
mod modname {
|
||||
@@ -1765,6 +1769,9 @@ pub(crate) enum DocumentedEnum {
|
||||
/// Another variant
|
||||
B { x: i32, y: i32 }
|
||||
}
|
||||
|
||||
/// Documented const
|
||||
pub(crate) const MY_CONST: i32 = 0;
|
||||
}
|
||||
",
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user