review comments

This commit is contained in:
Esteban Küber 2024-11-12 00:59:11 +00:00
parent f1772d5739
commit bb37e5d3cd
2 changed files with 5 additions and 6 deletions

View File

@ -789,11 +789,14 @@ pub enum PatKind<'tcx> {
},
/// Inline or named constant found while lowering a pattern.
///
/// We only mark patterns referencing constants when they are bare names that could have been
/// new bindings if the `const` didn't exist.
ExpandedConstant {
/// [DefId] of the constant, we need this so that we have a
/// reference that can be used by unsafety checking to visit nested
/// unevaluated constants. If the `DefId` doesn't correspond to a local
/// crate, it points at the `const` item.
/// unevaluated constants and for diagnostics. If the `DefId` doesn't
/// correspond to a local crate, it points at the `const` item.
def_id: DefId,
/// If `false`, then `def_id` points at a `const` item, otherwise it
/// corresponds to a local inline const.

View File

@ -696,10 +696,6 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
misc_suggestion = Some(MiscPatternSuggestion::AttemptedIntegerLiteral {
start_span: pat.span.shrink_to_lo(),
});
} else if snippet.chars().all(|c| c.is_alphanumeric() || c == '_') {
interpreted_as_const = Some(pat.span);
interpreted_as_const_sugg =
Some(InterpretedAsConst { span: pat.span, variable: snippet });
}
}