Improve error for self: Box<self>

This commit is contained in:
clubby789
2023-05-11 12:25:01 +01:00
parent 4d941cd981
commit 3851a4bb91
9 changed files with 63 additions and 25 deletions

View File

@@ -150,6 +150,15 @@ pub(crate) enum ConstantItemKind {
Static,
}
impl ConstantItemKind {
pub(crate) fn as_str(&self) -> &'static str {
match self {
Self::Const => "const",
Self::Static => "static",
}
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
enum RecordPartialRes {
Yes,