Skip to main content

rustc_parse/parser/
pat.rs

1use std::ops::Bound;
2
3use rustc_ast::mut_visit::{self, MutVisitor};
4use rustc_ast::token::NtPatKind::*;
5use rustc_ast::token::{self, IdentIsRaw, MetaVarKind, Token};
6use rustc_ast::util::parser::ExprPrecedence;
7use rustc_ast::visit::{self, Visitor};
8use rustc_ast::{
9    self as ast, Arm, AttrVec, BindingMode, ByRef, Expr, ExprKind, Guard, LocalKind, MacCall,
10    Mutability, Pat, PatField, PatFieldsRest, PatKind, Path, QSelf, RangeEnd, RangeSyntax, Stmt,
11    StmtKind, Ty,
12};
13use rustc_ast_pretty::pprust;
14use rustc_errors::{Applicability, Diag, DiagArgValue, PResult, StashKey};
15use rustc_span::{BytePos, ErrorGuaranteed, Ident, Span, Spanned, kw, respan, sym};
16use thin_vec::{ThinVec, thin_vec};
17
18use super::{ForceCollect, Parser, PathStyle, Restrictions, Trailing, UsePreAttrPos};
19use crate::diagnostics::{
20    self, AmbiguousRangePattern, AtDotDotInStructPattern, AtInStructPattern,
21    DotDotDotForRemainingFields, DotDotDotRangeToPatternNotAllowed, DotDotDotRestPattern,
22    EnumPatternInsteadOfIdentifier, ExpectedBindingLeftOfAt, ExpectedCommaAfterPatternField,
23    ExprParenthesesNeeded, GenericArgsInPatRequireTurbofishSyntax, InclusiveRangeExtraEquals,
24    InclusiveRangeMatchArrow, InclusiveRangeNoEnd, InvalidMutInPattern, ParenRangeSuggestion,
25    PatternOnWrongSideOfAt, RemoveLet, RepeatedMutInPattern, SwitchRefBoxOrder,
26    TopLevelOrPatternNotAllowed, TopLevelOrPatternNotAllowedSugg, TrailingVertNotAllowed,
27    TrailingVertSuggestion, UnexpectedExpressionInPattern, UnexpectedExpressionInPatternSugg,
28    UnexpectedLifetimeInPattern, UnexpectedParenInRangePat, UnexpectedParenInRangePatSugg,
29    UnexpectedVertVertBeforeFunctionParam, UnexpectedVertVertInPattern, WrapInParens,
30};
31use crate::parser::expr::{DestructuredFloat, could_be_unclosed_char_literal};
32use crate::{exp, maybe_recover_from_interpolated_ty_qpath};
33
34#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for Expected {
    #[inline]
    fn eq(&self, other: &Expected) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::marker::Copy for Expected { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Expected {
    #[inline]
    fn clone(&self) -> Expected { *self }
}Clone)]
35pub enum Expected {
36    ParameterName,
37    ArgumentName,
38    Identifier,
39    BindingPattern,
40}
41
42impl Expected {
43    // FIXME(#100717): migrate users of this to proper localization
44    fn to_string_or_fallback(expected: Option<Expected>) -> &'static str {
45        match expected {
46            Some(Expected::ParameterName) => "parameter name",
47            Some(Expected::ArgumentName) => "argument name",
48            Some(Expected::Identifier) => "identifier",
49            Some(Expected::BindingPattern) => "binding pattern",
50            None => "pattern",
51        }
52    }
53}
54
55const WHILE_PARSING_OR_MSG: &str = "while parsing this or-pattern starting here";
56
57/// Whether or not to recover a `,` when parsing or-patterns.
58#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for RecoverComma {
    #[inline]
    fn eq(&self, other: &RecoverComma) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::marker::Copy for RecoverComma { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RecoverComma {
    #[inline]
    fn clone(&self) -> RecoverComma { *self }
}Clone)]
59pub enum RecoverComma {
60    Yes,
61    No,
62}
63
64/// Whether or not to recover a `:` when parsing patterns that were meant to be paths.
65#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for RecoverColon {
    #[inline]
    fn eq(&self, other: &RecoverColon) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::marker::Copy for RecoverColon { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RecoverColon {
    #[inline]
    fn clone(&self) -> RecoverColon { *self }
}Clone)]
66pub enum RecoverColon {
67    Yes,
68    No,
69}
70
71/// Whether or not to recover a `a, b` when parsing patterns as `(a, b)` or that *and* `a | b`.
72#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for CommaRecoveryMode {
    #[inline]
    fn eq(&self, other: &CommaRecoveryMode) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::marker::Copy for CommaRecoveryMode { }Copy, #[automatically_derived]
impl ::core::clone::Clone for CommaRecoveryMode {
    #[inline]
    fn clone(&self) -> CommaRecoveryMode { *self }
}Clone)]
73pub enum CommaRecoveryMode {
74    LikelyTuple,
75    EitherTupleOrPipe,
76}
77
78/// The result of `eat_or_separator`. We want to distinguish which case we are in to avoid
79/// emitting duplicate diagnostics.
80#[derive(#[automatically_derived]
impl ::core::fmt::Debug for EatOrResult {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                EatOrResult::TrailingVert => "TrailingVert",
                EatOrResult::AteOr => "AteOr",
                EatOrResult::None => "None",
            })
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for EatOrResult {
    #[inline]
    fn clone(&self) -> EatOrResult { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for EatOrResult { }Copy)]
81enum EatOrResult {
82    /// We recovered from a trailing vert.
83    TrailingVert,
84    /// We ate an `|` (or `||` and recovered).
85    AteOr,
86    /// We did not eat anything (i.e. the current token is not `|` or `||`).
87    None,
88}
89
90/// The syntax location of a given pattern. Used for diagnostics.
91#[derive(#[automatically_derived]
impl ::core::clone::Clone for PatternLocation {
    #[inline]
    fn clone(&self) -> PatternLocation { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for PatternLocation { }Copy)]
92pub enum PatternLocation {
93    LetBinding,
94    FunctionParameter,
95}
96
97impl<'a> Parser<'a> {
98    /// Parses a pattern.
99    ///
100    /// Corresponds to `Pattern` in RFC 3637 and admits guard patterns at the top level.
101    /// Used when parsing patterns in all cases where neither `PatternNoTopGuard` nor
102    /// `PatternNoTopAlt` (see below) are used.
103    pub fn parse_pat_allow_top_guard(
104        &mut self,
105        expected: Option<Expected>,
106        rc: RecoverComma,
107        ra: RecoverColon,
108        rt: CommaRecoveryMode,
109    ) -> PResult<'a, Pat> {
110        let pat = self.parse_pat_no_top_guard(expected, rc, ra, rt)?;
111
112        if self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::If,
    token_type: crate::parser::token_type::TokenType::KwIf,
}exp!(If)) {
113            let guard = if let Some(guard) = self.eat_metavar_guard() {
114                guard
115            } else {
116                let leading_if_span = self.prev_token.span;
117                let cond = self.parse_expr()?;
118                let cond_span = cond.span;
119                Box::new(Guard { cond: *cond, span_with_leading_if: leading_if_span.to(cond_span) })
120            };
121
122            // Feature-gate guard patterns
123            self.psess.gated_spans.gate(sym::guard_patterns, guard.span());
124            let span = pat.span.to(guard.span());
125            Ok(self.mk_pat(span, PatKind::Guard(Box::new(pat), guard)))
126        } else {
127            Ok(pat)
128        }
129    }
130
131    /// Parses a pattern.
132    ///
133    /// Corresponds to `PatternNoTopAlt` in RFC 3637 and does not admit or-patterns
134    /// or guard patterns at the top level. Used when parsing the parameters of lambda
135    /// expressions, functions, function pointers, and `pat_param` macro fragments.
136    pub fn parse_pat_no_top_alt(
137        &mut self,
138        expected: Option<Expected>,
139        syntax_loc: Option<PatternLocation>,
140    ) -> PResult<'a, Pat> {
141        self.parse_pat_with_range_pat(true, expected, syntax_loc)
142    }
143
144    /// Parses a pattern.
145    ///
146    /// Corresponds to `PatternNoTopGuard` in RFC 3637 and allows or-patterns, but not
147    /// guard patterns, at the top level. Used for parsing patterns in `pat` fragments (until
148    /// the next edition) and `let`, `if let`, and `while let` expressions.
149    ///
150    /// Note that after the FCP in <https://github.com/rust-lang/rust/issues/81415>,
151    /// a leading vert is allowed in nested or-patterns, too. This allows us to
152    /// simplify the grammar somewhat.
153    pub fn parse_pat_no_top_guard(
154        &mut self,
155        expected: Option<Expected>,
156        rc: RecoverComma,
157        ra: RecoverColon,
158        rt: CommaRecoveryMode,
159    ) -> PResult<'a, Pat> {
160        self.parse_pat_no_top_guard_inner(expected, rc, ra, rt, None).map(|(pat, _)| pat)
161    }
162
163    /// Returns the pattern and a bool indicating whether we recovered from a trailing vert (true =
164    /// recovered).
165    fn parse_pat_no_top_guard_inner(
166        &mut self,
167        expected: Option<Expected>,
168        rc: RecoverComma,
169        ra: RecoverColon,
170        rt: CommaRecoveryMode,
171        syntax_loc: Option<PatternLocation>,
172    ) -> PResult<'a, (Pat, bool)> {
173        // Keep track of whether we recovered from a trailing vert so that we can avoid duplicated
174        // suggestions (which bothers rustfix).
175        //
176        // Allow a '|' before the pats (RFCs 1925, 2530, and 2535).
177        let (leading_vert_span, mut trailing_vert) = match self.eat_or_separator(None) {
178            EatOrResult::AteOr => (Some(self.prev_token.span), false),
179            EatOrResult::TrailingVert => (None, true),
180            EatOrResult::None => (None, false),
181        };
182
183        // Parse the first pattern (`p_0`).
184        let mut first_pat = match self.parse_pat_no_top_alt(expected, syntax_loc) {
185            Ok(pat) => pat,
186            Err(err)
187                if self.token.is_reserved_ident()
188                    && !self.token.is_keyword(kw::In)
189                    && !self.token.is_keyword(kw::If) =>
190            {
191                err.emit();
192                self.bump();
193                self.mk_pat(self.token.span, PatKind::Wild)
194            }
195            Err(err) => return Err(err),
196        };
197        if rc == RecoverComma::Yes && !first_pat.could_be_never_pattern() {
198            self.maybe_recover_unexpected_comma(first_pat.span, rt)?;
199        }
200
201        // If the next token is not a `|`,
202        // this is not an or-pattern and we should exit here.
203        if !self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Or,
    token_type: crate::parser::token_type::TokenType::Or,
}exp!(Or)) && self.token != token::OrOr {
204            // If we parsed a leading `|` which should be gated,
205            // then we should really gate the leading `|`.
206            // This complicated procedure is done purely for diagnostics UX.
207
208            // Check if the user wrote `foo:bar` instead of `foo::bar`.
209            if ra == RecoverColon::Yes && token::Colon == self.token.kind {
210                first_pat = self.recover_colon_colon_in_pat_typo(first_pat, expected);
211            }
212
213            if let Some(leading_vert_span) = leading_vert_span {
214                // If there was a leading vert, treat this as an or-pattern. This improves
215                // diagnostics.
216                let span = leading_vert_span.to(self.prev_token.span);
217                return Ok((self.mk_pat(span, PatKind::Or({
    let len = [()].len();
    let mut vec = ::thin_vec::ThinVec::with_capacity(len);
    vec.push(first_pat);
    vec
}thin_vec![first_pat])), trailing_vert));
218            }
219
220            return Ok((first_pat, trailing_vert));
221        }
222
223        // Parse the patterns `p_1 | ... | p_n` where `n > 0`.
224        let lo = leading_vert_span.unwrap_or(first_pat.span);
225        let mut pats = {
    let len = [()].len();
    let mut vec = ::thin_vec::ThinVec::with_capacity(len);
    vec.push(first_pat);
    vec
}thin_vec![first_pat];
226        loop {
227            match self.eat_or_separator(Some(lo)) {
228                EatOrResult::AteOr => {}
229                EatOrResult::None => break,
230                EatOrResult::TrailingVert => {
231                    trailing_vert = true;
232                    break;
233                }
234            }
235            let pat = self.parse_pat_no_top_alt(expected, syntax_loc).map_err(|mut err| {
236                err.span_label(lo, WHILE_PARSING_OR_MSG);
237                err
238            })?;
239            if rc == RecoverComma::Yes && !pat.could_be_never_pattern() {
240                self.maybe_recover_unexpected_comma(pat.span, rt)?;
241            }
242            pats.push(pat);
243        }
244        let or_pattern_span = lo.to(self.prev_token.span);
245
246        Ok((self.mk_pat(or_pattern_span, PatKind::Or(pats)), trailing_vert))
247    }
248
249    /// Parse a pattern and (maybe) a `Colon` in positions where a pattern may be followed by a
250    /// type annotation (e.g. for `let` bindings or `fn` params).
251    ///
252    /// Generally, this corresponds to `pat_no_top_alt` followed by an optional `Colon`. It will
253    /// eat the `Colon` token if one is present.
254    ///
255    /// The return value represents the parsed pattern and `true` if a `Colon` was parsed (`false`
256    /// otherwise).
257    pub(super) fn parse_pat_before_ty(
258        &mut self,
259        expected: Option<Expected>,
260        rc: RecoverComma,
261        syntax_loc: PatternLocation,
262    ) -> PResult<'a, (Box<Pat>, bool)> {
263        // We use `parse_pat_allow_top_alt` regardless of whether we actually want top-level
264        // or-patterns so that we can detect when a user tries to use it. This allows us to print a
265        // better error message.
266        let (pat, trailing_vert) = self.parse_pat_no_top_guard_inner(
267            expected,
268            rc,
269            RecoverColon::No,
270            CommaRecoveryMode::LikelyTuple,
271            Some(syntax_loc),
272        )?;
273        let pat = Box::new(pat);
274        let colon = self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Colon,
    token_type: crate::parser::token_type::TokenType::Colon,
}exp!(Colon));
275
276        if let PatKind::Or(pats) = &pat.kind {
277            let span = pat.span;
278            let sub = if let [_] = &pats[..] {
279                let span = span.with_hi(span.lo() + BytePos(1));
280                Some(TopLevelOrPatternNotAllowedSugg::RemoveLeadingVert { span })
281            } else {
282                Some(TopLevelOrPatternNotAllowedSugg::WrapInParens {
283                    span,
284                    suggestion: WrapInParens { lo: span.shrink_to_lo(), hi: span.shrink_to_hi() },
285                })
286            };
287
288            let err = self.dcx().create_err(match syntax_loc {
289                PatternLocation::LetBinding => {
290                    TopLevelOrPatternNotAllowed::LetBinding { span, sub }
291                }
292                PatternLocation::FunctionParameter => {
293                    TopLevelOrPatternNotAllowed::FunctionParameter { span, sub }
294                }
295            });
296            if trailing_vert {
297                err.delay_as_bug();
298            } else {
299                err.emit();
300            }
301        }
302
303        Ok((pat, colon))
304    }
305
306    /// Parse the pattern for a function or function pointer parameter, followed by a colon.
307    ///
308    /// The return value represents the parsed pattern and `true` if a `Colon` was parsed (`false`
309    /// otherwise).
310    pub(super) fn parse_fn_param_pat_colon(&mut self) -> PResult<'a, (Box<Pat>, bool)> {
311        // In order to get good UX, we first recover in the case of a leading vert for an illegal
312        // top-level or-pat. Normally, this means recovering both `|` and `||`, but in this case,
313        // a leading `||` probably doesn't indicate an or-pattern attempt, so we handle that
314        // separately.
315        if let token::OrOr = self.token.kind {
316            self.dcx().emit_err(UnexpectedVertVertBeforeFunctionParam { span: self.token.span });
317            self.bump();
318        }
319
320        self.parse_pat_before_ty(
321            Some(Expected::ParameterName),
322            RecoverComma::No,
323            PatternLocation::FunctionParameter,
324        )
325    }
326
327    /// Eat the or-pattern `|` separator.
328    /// If instead a `||` token is encountered, recover and pretend we parsed `|`.
329    fn eat_or_separator(&mut self, lo: Option<Span>) -> EatOrResult {
330        if self.recover_trailing_vert(lo) {
331            EatOrResult::TrailingVert
332        } else if self.token.kind == token::OrOr {
333            // Found `||`; Recover and pretend we parsed `|`.
334            self.dcx().emit_err(UnexpectedVertVertInPattern { span: self.token.span, start: lo });
335            self.bump();
336            EatOrResult::AteOr
337        } else if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Or,
    token_type: crate::parser::token_type::TokenType::Or,
}exp!(Or)) {
338            EatOrResult::AteOr
339        } else {
340            EatOrResult::None
341        }
342    }
343
344    /// Recover if `|` or `||` is the current token and we have one of the
345    /// tokens `=>`, `if`, `=`, `:`, `;`, `,`, `]`, `)`, or `}` ahead of us.
346    ///
347    /// These tokens all indicate that we reached the end of the or-pattern
348    /// list and can now reliably say that the `|` was an illegal trailing vert.
349    /// Note that there are more tokens such as `@` for which we know that the `|`
350    /// is an illegal parse. However, the user's intent is less clear in that case.
351    fn recover_trailing_vert(&mut self, lo: Option<Span>) -> bool {
352        let is_end_ahead = self.look_ahead(1, |token| {
353            #[allow(non_exhaustive_omitted_patterns)] match &token.uninterpolate().kind {
    token::FatArrow | token::Ident(kw::If, token::IdentIsRaw::No) | token::Eq
        | token::Semi | token::Colon | token::Comma | token::CloseBracket |
        token::CloseParen | token::CloseBrace => true,
    _ => false,
}matches!(
354                &token.uninterpolate().kind,
355                token::FatArrow // e.g. `a | => 0,`.
356                | token::Ident(kw::If, token::IdentIsRaw::No) // e.g. `a | if expr`.
357                | token::Eq // e.g. `let a | = 0`.
358                | token::Semi // e.g. `let a |;`.
359                | token::Colon // e.g. `let a | :`.
360                | token::Comma // e.g. `let (a |,)`.
361                | token::CloseBracket // e.g. `let [a | ]`.
362                | token::CloseParen // e.g. `let (a | )`.
363                | token::CloseBrace // e.g. `let A { f: a | }`.
364            )
365        });
366        match (is_end_ahead, &self.token.kind) {
367            (true, token::Or | token::OrOr) => {
368                // A `|` or possibly `||` token shouldn't be here. Ban it.
369                let token = pprust::token_to_string(&self.token);
370                self.dcx().emit_err(TrailingVertNotAllowed {
371                    span: self.token.span,
372                    start: lo,
373                    suggestion: TrailingVertSuggestion {
374                        span: self.prev_token.span.shrink_to_hi().with_hi(self.token.span.hi()),
375                        token: token.clone(),
376                    },
377                    token,
378                    note_double_vert: self.token.kind == token::OrOr,
379                });
380                self.bump();
381                true
382            }
383            _ => false,
384        }
385    }
386
387    /// Ensures that the last parsed pattern (or pattern range bound) is not followed by an expression.
388    ///
389    /// `is_end_bound` indicates whether the last parsed thing was the end bound of a range pattern (see [`parse_pat_range_end`](Self::parse_pat_range_end))
390    /// in order to say "expected a pattern range bound" instead of "expected a pattern";
391    /// ```text
392    /// 0..=1 + 2
393    ///     ^^^^^
394    /// ```
395    /// Only the end bound is spanned in this case, and this function has no idea if there was a `..=` before `pat_span`, hence the parameter.
396    ///
397    /// This function returns `Some` if a trailing expression was recovered, and said expression's span.
398    #[must_use = "the pattern must be discarded as `PatKind::Err` if this function returns Some"]
399    fn maybe_recover_trailing_expr(
400        &mut self,
401        pat_span: Span,
402        is_end_bound: bool,
403    ) -> Option<(ErrorGuaranteed, Span)> {
404        if self.prev_token.is_keyword(kw::Underscore) || !self.may_recover() {
405            // Don't recover anything after an `_` or if recovery is disabled.
406            return None;
407        }
408
409        // Returns `true` iff `token` is an unsuffixed integer.
410        let is_one_tuple_index = |_: &Self, token: &Token| -> bool {
411            use token::{Lit, LitKind};
412
413            #[allow(non_exhaustive_omitted_patterns)] match token.kind {
    token::Literal(Lit { kind: LitKind::Integer, symbol: _, suffix: None }) =>
        true,
    _ => false,
}matches!(
414                token.kind,
415                token::Literal(Lit { kind: LitKind::Integer, symbol: _, suffix: None })
416            )
417        };
418
419        // Returns `true` iff `token` is an unsuffixed `x.y` float.
420        let is_two_tuple_indexes = |this: &Self, token: &Token| -> bool {
421            use token::{Lit, LitKind};
422
423            if let token::Literal(Lit { kind: LitKind::Float, symbol, suffix: None }) = token.kind
424                && let DestructuredFloat::MiddleDot(..) = this.break_up_float(symbol, token.span)
425            {
426                true
427            } else {
428                false
429            }
430        };
431
432        // Check for `.hello` or `.0`.
433        let has_dot_expr = self.check_noexpect(&token::Dot) // `.`
434            && self.look_ahead(1, |tok| {
435                tok.is_ident() // `hello`
436                || is_one_tuple_index(&self, &tok) // `0`
437                || is_two_tuple_indexes(&self, &tok) // `0.0`
438            });
439
440        // Check for operators.
441        // `|` is excluded as it is used in pattern alternatives and lambdas,
442        // `?` is included for error propagation,
443        // `[` is included for indexing operations,
444        // `[]` is excluded as `a[]` isn't an expression and should be recovered as `a, []` (cf. `tests/ui/parser/pat-lt-bracket-7.rs`),
445        // `as` is included for type casts
446        let has_trailing_operator = #[allow(non_exhaustive_omitted_patterns)] match self.token.kind {
    token::Plus | token::Minus | token::Star | token::Slash | token::Percent |
        token::Caret | token::And | token::Shl | token::Shr => true,
    _ => false,
}matches!(
447                self.token.kind,
448                token::Plus | token::Minus | token::Star | token::Slash | token::Percent
449                | token::Caret | token::And | token::Shl | token::Shr // excludes `Or`
450            )
451            || self.token == token::Question
452            || (self.token == token::OpenBracket
453                && self.look_ahead(1, |t| *t != token::CloseBracket)) // excludes `[]`
454            || self.token.is_keyword(kw::As);
455
456        if !has_dot_expr && !has_trailing_operator {
457            // Nothing to recover here.
458            return None;
459        }
460
461        // Let's try to parse an expression to emit a better diagnostic.
462        let mut snapshot = self.create_snapshot_for_diagnostic();
463        snapshot.restrictions.insert(Restrictions::IS_PAT);
464
465        // Parse `?`, `.f`, `(arg0, arg1, ...)` or `[expr]` until they've all been eaten.
466        let Ok(expr) = snapshot
467            .parse_expr_dot_or_call_with(
468                AttrVec::new(),
469                self.mk_expr(pat_span, ExprKind::Dummy), // equivalent to transforming the parsed pattern into an `Expr`
470                pat_span,
471            )
472            .map_err(|err| err.cancel())
473        else {
474            // We got a trailing method/operator, but that wasn't an expression.
475            return None;
476        };
477
478        // Parse an associative expression such as `+ expr`, `% expr`, ...
479        // Assignments, ranges and `|` are disabled by [`Restrictions::IS_PAT`].
480        let Ok((expr, _)) = snapshot
481            .parse_expr_assoc_rest(Bound::Unbounded, false, expr)
482            .map_err(|err| err.cancel())
483        else {
484            // We got a trailing method/operator, but that wasn't an expression.
485            return None;
486        };
487
488        // We got a valid expression.
489        self.restore_snapshot(snapshot);
490        self.restrictions.remove(Restrictions::IS_PAT);
491
492        let is_bound = is_end_bound
493            // is_start_bound: either `..` or `)..`
494            || self.token.is_range_separator()
495            || self.token == token::CloseParen
496                && self.look_ahead(1, Token::is_range_separator);
497
498        let span = expr.span;
499        let mut diag = self.dcx().create_err(UnexpectedExpressionInPattern { span, is_bound });
500        // The unexpected expr's precedence. Not used directly in the error message, but
501        // needed for the stashing of this error to work correctly. We store a `u32` rather
502        // than an `ExprPrecedence` to avoid having to impl `IntoDiagArg` for
503        // `ExprPrecedence`.
504        diag.arg("expr_precedence", expr.precedence() as u32);
505
506        Some((diag.stash(span, StashKey::ExprInPat).unwrap(), span))
507    }
508
509    /// Called by [`Parser::parse_stmt_without_recovery`], used to add statement-aware subdiagnostics to the errors stashed
510    /// by [`Parser::maybe_recover_trailing_expr`].
511    pub(super) fn maybe_augment_stashed_expr_in_pats_with_suggestions(&mut self, stmt: &Stmt) {
512        if self.dcx().has_errors().is_none() {
513            // No need to walk the statement if there's no stashed errors.
514            return;
515        }
516
517        struct PatVisitor<'a> {
518            /// `self`
519            parser: &'a Parser<'a>,
520            /// The freshly-parsed statement.
521            stmt: &'a Stmt,
522            /// The current match arm (for arm guard suggestions).
523            arm: Option<&'a Arm>,
524            /// The current struct field (for variable name suggestions).
525            field: Option<&'a PatField>,
526        }
527
528        impl<'a> PatVisitor<'a> {
529            /// Looks for stashed [`StashKey::ExprInPat`] errors in `stash_span`, and emit them with suggestions.
530            /// `stash_span` is contained in `expr_span`, the latter being larger in borrow patterns;
531            /// ```txt
532            /// &mut x.y
533            /// -----^^^ `stash_span`
534            /// |
535            /// `expr_span`
536            /// ```
537            /// `is_range_bound` is used to exclude arm guard suggestions in range pattern bounds.
538            fn maybe_add_suggestions_then_emit(
539                &self,
540                stash_span: Span,
541                expr_span: Span,
542                is_range_bound: bool,
543            ) {
544                self.parser.dcx().try_steal_modify_and_emit_err(
545                    stash_span,
546                    StashKey::ExprInPat,
547                    |err| {
548                        // Includes pre-pats (e.g. `&mut <err>`) in the diagnostic.
549                        err.span.replace(stash_span, expr_span);
550
551                        let sm = self.parser.psess.source_map();
552                        let stmt = self.stmt;
553                        let line_lo = sm.span_extend_to_line(stmt.span).shrink_to_lo();
554                        let indentation = sm.indentation_before(stmt.span).unwrap_or_default();
555                        let Ok(expr) = self.parser.span_to_snippet(expr_span) else {
556                            // FIXME: some suggestions don't actually need the snippet; see PR #123877's unresolved conversations.
557                            return;
558                        };
559
560                        if let StmtKind::Let(local) = &stmt.kind {
561                            match &local.kind {
562                                LocalKind::Decl | LocalKind::Init(_) => {
563                                    // It's kinda hard to guess what the user intended, so don't make suggestions.
564                                    return;
565                                }
566
567                                LocalKind::InitElse(_, _) => {}
568                            }
569                        }
570
571                        // help: use an arm guard `if val == expr`
572                        // FIXME(guard_patterns): suggest this regardless of a match arm.
573                        if let Some(arm) = &self.arm
574                            && !is_range_bound
575                        {
576                            let (ident, ident_span) = match self.field {
577                                Some(field) => {
578                                    (field.ident.to_string(), field.ident.span.to(expr_span))
579                                }
580                                None => ("val".to_owned(), expr_span),
581                            };
582
583                            // Are parentheses required around `expr`?
584                            // HACK: a neater way would be preferable.
585                            let expr = match &err.args["expr_precedence"] {
586                                DiagArgValue::Number(expr_precedence) => {
587                                    if *expr_precedence <= ExprPrecedence::Compare as i32 {
588                                        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("({0})", expr))
    })format!("({expr})")
589                                    } else {
590                                        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}", expr))
    })format!("{expr}")
591                                    }
592                                }
593                                _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
594                            };
595
596                            match &arm.guard {
597                                None => {
598                                    err.subdiagnostic(
599                                        UnexpectedExpressionInPatternSugg::CreateGuard {
600                                            ident_span,
601                                            pat_hi: arm.pat.span.shrink_to_hi(),
602                                            ident,
603                                            expr,
604                                        },
605                                    );
606                                }
607                                Some(guard) => {
608                                    // Are parentheses required around the old guard?
609                                    let wrap_guard =
610                                        guard.cond.precedence() <= ExprPrecedence::LAnd;
611
612                                    err.subdiagnostic(
613                                        UnexpectedExpressionInPatternSugg::UpdateGuard {
614                                            ident_span,
615                                            guard_lo: if wrap_guard {
616                                                Some(guard.span().shrink_to_lo())
617                                            } else {
618                                                None
619                                            },
620                                            guard_hi: guard.span().shrink_to_hi(),
621                                            guard_hi_paren: if wrap_guard { ")" } else { "" },
622                                            ident,
623                                            expr,
624                                        },
625                                    );
626                                }
627                            }
628                        }
629
630                        // help: extract the expr into a `const VAL: _ = expr`
631                        if !line_lo.overlaps(expr_span) {
632                            let ident = match self.field {
633                                Some(field) => field.ident.as_str().to_uppercase(),
634                                None => "VAL".to_owned(),
635                            };
636                            err.subdiagnostic(UnexpectedExpressionInPatternSugg::Const {
637                                stmt_lo: line_lo,
638                                ident_span: expr_span,
639                                expr,
640                                ident,
641                                indentation,
642                            });
643                        }
644                    },
645                );
646            }
647        }
648
649        impl<'a> Visitor<'a> for PatVisitor<'a> {
650            fn visit_arm(&mut self, a: &'a Arm) -> Self::Result {
651                self.arm = Some(a);
652                visit::walk_arm(self, a);
653                self.arm = None;
654            }
655
656            fn visit_pat_field(&mut self, fp: &'a PatField) -> Self::Result {
657                self.field = Some(fp);
658                visit::walk_pat_field(self, fp);
659                self.field = None;
660            }
661
662            fn visit_pat(&mut self, p: &'a Pat) -> Self::Result {
663                match &p.kind {
664                    // Base expression
665                    PatKind::Err(_) | PatKind::Expr(_) => {
666                        self.maybe_add_suggestions_then_emit(p.span, p.span, false)
667                    }
668
669                    // Sub-patterns
670                    // FIXME: this doesn't work with recursive subpats (`&mut &mut <err>`)
671                    PatKind::Ref(subpat, _, _)
672                        if #[allow(non_exhaustive_omitted_patterns)] match subpat.kind {
    PatKind::Err(_) | PatKind::Expr(_) => true,
    _ => false,
}matches!(subpat.kind, PatKind::Err(_) | PatKind::Expr(_)) =>
673                    {
674                        self.maybe_add_suggestions_then_emit(subpat.span, p.span, false)
675                    }
676
677                    // Sub-expressions
678                    PatKind::Range(start, end, _) => {
679                        if let Some(start) = start {
680                            self.maybe_add_suggestions_then_emit(start.span, start.span, true);
681                        }
682
683                        if let Some(end) = end {
684                            self.maybe_add_suggestions_then_emit(end.span, end.span, true);
685                        }
686                    }
687
688                    // Walk continuation
689                    _ => visit::walk_pat(self, p),
690                }
691            }
692        }
693
694        // Starts the visit.
695        PatVisitor { parser: self, stmt, arm: None, field: None }.visit_stmt(stmt);
696    }
697
698    fn eat_metavar_pat(&mut self) -> Option<Pat> {
699        // Must try both kinds of pattern nonterminals.
700        if let Some(pat) = self.eat_metavar_seq_with_matcher(
701            |mv_kind| #[allow(non_exhaustive_omitted_patterns)] match mv_kind {
    MetaVarKind::Pat(PatParam { .. }) => true,
    _ => false,
}matches!(mv_kind, MetaVarKind::Pat(PatParam { .. })),
702            |this| this.parse_pat_no_top_alt(None, None),
703        ) {
704            Some(pat)
705        } else if let Some(pat) = self.eat_metavar_seq(MetaVarKind::Pat(PatWithOr), |this| {
706            this.parse_pat_no_top_guard(
707                None,
708                RecoverComma::No,
709                RecoverColon::No,
710                CommaRecoveryMode::EitherTupleOrPipe,
711            )
712        }) {
713            Some(pat)
714        } else {
715            None
716        }
717    }
718
719    /// Parses a pattern, with a setting whether modern range patterns (e.g., `a..=b`, `a..b` are
720    /// allowed).
721    fn parse_pat_with_range_pat(
722        &mut self,
723        allow_range_pat: bool,
724        expected: Option<Expected>,
725        syntax_loc: Option<PatternLocation>,
726    ) -> PResult<'a, Pat> {
727        if true && self.may_recover() &&
                let Some(mv_kind) = self.token.is_metavar_seq() &&
            let token::MetaVarKind::Ty { .. } = mv_kind &&
        self.check_noexpect_past_close_delim(&token::PathSep) {
    let ty =
        self.eat_metavar_seq(mv_kind,
                |this|
                    this.parse_ty_no_question_mark_recover()).expect("metavar seq ty");
    return self.maybe_recover_from_bad_qpath_stage_2(self.prev_token.span,
            ty);
};maybe_recover_from_interpolated_ty_qpath!(self, true);
728
729        if let Some(pat) = self.eat_metavar_pat() {
730            return Ok(pat);
731        }
732
733        let mut lo = self.token.span;
734
735        if self.token.is_keyword(kw::Let)
736            && self.look_ahead(1, |tok| {
737                tok.can_begin_pattern(token::NtPatKind::PatParam { inferred: false })
738            })
739        {
740            self.bump();
741            // Trim extra space after the `let`
742            let span = lo.with_hi(self.token.span.lo());
743            self.dcx().emit_err(RemoveLet { span: lo, suggestion: span });
744            lo = self.token.span;
745        }
746
747        let pat = if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::And,
    token_type: crate::parser::token_type::TokenType::And,
}exp!(And)) || self.token == token::AndAnd {
748            self.parse_pat_deref(expected)?
749        } else if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::OpenParen,
    token_type: crate::parser::token_type::TokenType::OpenParen,
}exp!(OpenParen)) {
750            self.parse_pat_tuple_or_parens(syntax_loc)?
751        } else if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::OpenBracket,
    token_type: crate::parser::token_type::TokenType::OpenBracket,
}exp!(OpenBracket)) {
752            // Parse `[pat, pat,...]` as a slice pattern.
753            let (pats, _) =
754                self.parse_delim_comma_seq(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::OpenBracket,
    token_type: crate::parser::token_type::TokenType::OpenBracket,
}exp!(OpenBracket), crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::CloseBracket,
    token_type: crate::parser::token_type::TokenType::CloseBracket,
}exp!(CloseBracket), |p| {
755                    p.parse_pat_allow_top_guard(
756                        None,
757                        RecoverComma::No,
758                        RecoverColon::No,
759                        CommaRecoveryMode::EitherTupleOrPipe,
760                    )
761                })?;
762            PatKind::Slice(pats)
763        } else if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::DotDot,
    token_type: crate::parser::token_type::TokenType::DotDot,
}exp!(DotDot)) && !self.is_pat_range_end_start(1) {
764            // A rest pattern `..`.
765            self.bump(); // `..`
766            PatKind::Rest
767        } else if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::DotDotDot,
    token_type: crate::parser::token_type::TokenType::DotDotDot,
}exp!(DotDotDot)) && !self.is_pat_range_end_start(1) {
768            self.recover_dotdotdot_rest_pat(lo, expected)
769        } else if let Some(form) = self.parse_range_end() {
770            self.parse_pat_range_to(form)? // `..=X`, `...X`, or `..X`.
771        } else if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Bang,
    token_type: crate::parser::token_type::TokenType::Bang,
}exp!(Bang)) {
772            // Parse `!`
773            self.psess.gated_spans.gate(sym::never_patterns, self.prev_token.span);
774            PatKind::Never
775        } else if self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Underscore,
    token_type: crate::parser::token_type::TokenType::KwUnderscore,
}exp!(Underscore)) {
776            // Parse `_`
777            PatKind::Wild
778        } else if self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Mut,
    token_type: crate::parser::token_type::TokenType::KwMut,
}exp!(Mut)) {
779            self.parse_pat_ident_mut()?
780        } else if self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Ref,
    token_type: crate::parser::token_type::TokenType::KwRef,
}exp!(Ref)) {
781            if self.check_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Box,
    token_type: crate::parser::token_type::TokenType::KwBox,
}exp!(Box)) {
782                // Suggest `box ref`.
783                let span = self.prev_token.span.to(self.token.span);
784                self.bump();
785                self.dcx().emit_err(SwitchRefBoxOrder { span });
786            }
787            // Parse ref ident @ pat / ref mut ident @ pat / ref pin const|mut ident @ pat
788            let (pinned, mutbl) = self.parse_pin_and_mut();
789            self.parse_pat_ident(
790                BindingMode(ByRef::Yes(pinned, mutbl), Mutability::Not),
791                syntax_loc,
792            )?
793        } else if self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Box,
    token_type: crate::parser::token_type::TokenType::KwBox,
}exp!(Box)) {
794            self.parse_pat_box()?
795        } else if self.check_inline_const(0) {
796            // Parse `const pat`
797            let const_expr = self.parse_const_block(lo.to(self.token.span), true)?;
798
799            if let Some(re) = self.parse_range_end() {
800                self.parse_pat_range_begin_with(const_expr, re)?
801            } else {
802                PatKind::Expr(const_expr)
803            }
804        } else if self.is_builtin() {
805            self.parse_pat_builtin()?
806        }
807        // Don't eagerly error on semantically invalid tokens when matching
808        // declarative macros, as the input to those doesn't have to be
809        // semantically valid. For attribute/derive proc macros this is not the
810        // case, so doing the recovery for them is fine.
811        else if self.can_be_ident_pat()
812            || (self.is_lit_bad_ident().is_some() && self.may_recover())
813        {
814            // Parse `ident @ pat`
815            // This can give false positives and parse nullary enums,
816            // they are dealt with later in resolve.
817            self.parse_pat_ident(BindingMode::NONE, syntax_loc)?
818        } else if self.is_start_of_pat_with_path() {
819            // Parse pattern starting with a path
820            let (qself, path) = if self.eat_lt() {
821                // Parse a qualified path
822                let (qself, path) = self.parse_qpath(PathStyle::Pat)?;
823                (Some(qself), path)
824            } else {
825                // Parse an unqualified path
826                (None, self.parse_path(PathStyle::Pat)?)
827            };
828            let span = lo.to(self.prev_token.span);
829
830            if qself.is_none() && self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Bang,
    token_type: crate::parser::token_type::TokenType::Bang,
}exp!(Bang)) {
831                self.parse_pat_mac_invoc(path)?
832            } else if let Some(form) = self.parse_range_end() {
833                let begin = self.mk_expr(span, ExprKind::Path(qself, path));
834                self.parse_pat_range_begin_with(begin, form)?
835            } else if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::OpenBrace,
    token_type: crate::parser::token_type::TokenType::OpenBrace,
}exp!(OpenBrace)) {
836                self.parse_pat_struct(qself, path)?
837            } else if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::OpenParen,
    token_type: crate::parser::token_type::TokenType::OpenParen,
}exp!(OpenParen)) {
838                self.parse_pat_tuple_struct(qself, path)?
839            } else {
840                match self.maybe_recover_trailing_expr(span, false) {
841                    Some((guar, _)) => PatKind::Err(guar),
842                    None => PatKind::Path(qself, path),
843                }
844            }
845        } else if let Some((lt, IdentIsRaw::No)) = self.token.lifetime()
846            // In pattern position, we're totally fine with using "next token isn't colon"
847            // as a heuristic. We could probably just always try to recover if it's a lifetime,
848            // because we never have `'a: label {}` in a pattern position anyways, but it does
849            // keep us from suggesting something like `let 'a: Ty = ..` => `let 'a': Ty = ..`
850            && could_be_unclosed_char_literal(lt)
851            && !self.look_ahead(1, |token| token.kind == token::Colon)
852        {
853            // Recover a `'a` as a `'a'` literal
854            let lt = self.expect_lifetime();
855            let (lit, _) =
856                self.recover_unclosed_char(lt.ident, Parser::mk_token_lit_char, |self_| {
857                    let expected = Expected::to_string_or_fallback(expected);
858                    let msg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("expected {0}, found {1}", expected,
                super::token_descr(&self_.token)))
    })format!(
859                        "expected {}, found {}",
860                        expected,
861                        super::token_descr(&self_.token)
862                    );
863
864                    self_
865                        .dcx()
866                        .struct_span_err(self_.token.span, msg)
867                        .with_span_label(self_.token.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("expected {0}", expected))
    })format!("expected {expected}"))
868                });
869            PatKind::Expr(self.mk_expr(lo, ExprKind::Lit(lit)))
870        } else {
871            // Try to parse everything else as literal with optional minus
872            match self.parse_literal_maybe_minus() {
873                Ok(begin) => {
874                    let begin = self
875                        .maybe_recover_trailing_expr(begin.span, false)
876                        .map(|(guar, sp)| self.mk_expr_err(sp, guar))
877                        .unwrap_or(begin);
878
879                    match self.parse_range_end() {
880                        Some(form) => self.parse_pat_range_begin_with(begin, form)?,
881                        None => PatKind::Expr(begin),
882                    }
883                }
884                Err(err) => return self.fatal_unexpected_non_pat(err, expected),
885            }
886        };
887
888        let mut pat = self.mk_pat(lo.to(self.prev_token.span), pat);
889
890        pat = self.maybe_recover_from_bad_qpath(pat)?;
891        if self.eat_noexpect(&token::At) {
892            pat = self.recover_intersection_pat(pat)?;
893        }
894
895        if !allow_range_pat {
896            self.ban_pat_range_if_ambiguous(&pat)
897        }
898
899        Ok(pat)
900    }
901
902    /// Recover from a typoed `...` pattern that was encountered
903    /// Ref: Issue #70388
904    fn recover_dotdotdot_rest_pat(&mut self, lo: Span, expected: Option<Expected>) -> PatKind {
905        // A typoed rest pattern `...`.
906        self.bump(); // `...`
907
908        if let Some(Expected::ParameterName) = expected {
909            // We have `...` in a closure argument, likely meant to be var-arg, which aren't
910            // supported in closures (#146489).
911            PatKind::Err(self.dcx().emit_err(DotDotDotRestPattern {
912                span: lo,
913                suggestion: None,
914                var_args: Some(()),
915            }))
916        } else {
917            // The user probably mistook `...` for a rest pattern `..`.
918            self.dcx().emit_err(DotDotDotRestPattern {
919                span: lo,
920                suggestion: Some(lo),
921                var_args: None,
922            });
923            PatKind::Rest
924        }
925    }
926
927    /// Try to recover the more general form `intersect ::= $pat_lhs @ $pat_rhs`.
928    ///
929    /// Allowed binding patterns generated by `binding ::= ref? mut? $ident @ $pat_rhs`
930    /// should already have been parsed by now at this point,
931    /// if the next token is `@` then we can try to parse the more general form.
932    ///
933    /// Consult `parse_pat_ident` for the `binding` grammar.
934    ///
935    /// The notion of intersection patterns are found in
936    /// e.g. [F#][and] where they are called AND-patterns.
937    ///
938    /// [and]: https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/pattern-matching
939    #[cold]
940    fn recover_intersection_pat(&mut self, lhs: Pat) -> PResult<'a, Pat> {
941        let mut rhs = self.parse_pat_no_top_alt(None, None)?;
942        let whole_span = lhs.span.to(rhs.span);
943
944        if let PatKind::Ident(_, _, sub @ None) = &mut rhs.kind {
945            // The user inverted the order, so help them fix that.
946            let lhs_span = lhs.span;
947            // Move the LHS into the RHS as a subpattern.
948            // The RHS is now the full pattern.
949            *sub = Some(Box::new(lhs));
950
951            self.dcx().emit_err(PatternOnWrongSideOfAt {
952                whole_span,
953                whole_pat: pprust::pat_to_string(&rhs),
954                pattern: lhs_span,
955                binding: rhs.span,
956            });
957        } else {
958            // The special case above doesn't apply so we may have e.g. `A(x) @ B(y)`.
959            rhs.kind = PatKind::Wild;
960            self.dcx().emit_err(ExpectedBindingLeftOfAt {
961                whole_span,
962                lhs: lhs.span,
963                rhs: rhs.span,
964            });
965        }
966
967        rhs.span = whole_span;
968        Ok(rhs)
969    }
970
971    /// Ban a range pattern if it has an ambiguous interpretation.
972    fn ban_pat_range_if_ambiguous(&self, pat: &Pat) {
973        match pat.kind {
974            PatKind::Range(
975                ..,
976                Spanned { node: RangeEnd::Included(RangeSyntax::DotDotDot), .. },
977            ) => return,
978            PatKind::Range(..) => {}
979            _ => return,
980        }
981
982        self.dcx().emit_err(AmbiguousRangePattern {
983            span: pat.span,
984            suggestion: ParenRangeSuggestion {
985                lo: pat.span.shrink_to_lo(),
986                hi: pat.span.shrink_to_hi(),
987            },
988        });
989    }
990
991    /// Parse `&pat` / `&mut pat` / `&pin const pat` / `&pin mut pat`.
992    fn parse_pat_deref(&mut self, expected: Option<Expected>) -> PResult<'a, PatKind> {
993        self.expect_and()?;
994        if let Some((lifetime, _)) = self.token.lifetime() {
995            self.bump(); // `'a`
996
997            self.dcx().emit_err(UnexpectedLifetimeInPattern {
998                span: self.prev_token.span,
999                symbol: lifetime.name,
1000                suggestion: self.prev_token.span.until(self.token.span),
1001            });
1002        }
1003
1004        let (pinned, mutbl) = self.parse_pin_and_mut();
1005        let subpat = self.parse_pat_with_range_pat(false, expected, None)?;
1006        Ok(PatKind::Ref(Box::new(subpat), pinned, mutbl))
1007    }
1008
1009    /// Parse a tuple or parenthesis pattern.
1010    fn parse_pat_tuple_or_parens(
1011        &mut self,
1012        syntax_loc: Option<PatternLocation>,
1013    ) -> PResult<'a, PatKind> {
1014        let open_paren = self.token.span;
1015
1016        // The index, the span of the `:` and the type of every element written
1017        // with an inline type annotation, which is invalid syntax. This is kept
1018        // out of the element patterns themselves so that the happy path doesn't
1019        // have to allocate for it.
1020        let mut tys: Vec<(usize, Span, Box<Ty>)> = Vec::new();
1021        let mut index = 0;
1022
1023        let (fields, trailing_comma) = self.parse_paren_comma_seq(|p| {
1024            let pat = p.parse_pat_allow_top_guard(
1025                None,
1026                RecoverComma::No,
1027                RecoverColon::No,
1028                CommaRecoveryMode::LikelyTuple,
1029            )?;
1030            // Recover from an inline `: <ty>` type annotation. We only do this
1031            // when there is whitespace after the colon, so that `(a:b)` keeps
1032            // the existing "maybe write a path separator here" (`a::b`)
1033            // suggestion, which is the more likely intent when the two are
1034            // written next to each other.
1035            if p.may_recover()
1036                && p.token == token::Colon
1037                && let colon = p.token.span
1038                && p.look_ahead(1, |next| next.span.lo() > colon.hi())
1039            {
1040                p.bump(); // eat the `:`
1041                tys.push((index, colon, p.parse_ty()?));
1042            }
1043            index += 1;
1044            Ok(pat)
1045        })?;
1046
1047        // If any element carried an inline type annotation then this is the
1048        // invalid `(a: bool, b: u8)` form; report it and suggest the correct
1049        // spelling where we can. Either way, continue on with the type
1050        // annotations stripped.
1051        if !tys.is_empty() {
1052            self.recover_tuple_pat_type_ascription(
1053                open_paren,
1054                &fields,
1055                &tys,
1056                trailing_comma,
1057                syntax_loc,
1058            );
1059        }
1060
1061        // Here, `(pat,)` is a tuple pattern.
1062        // For backward compatibility, `(..)` is a tuple pattern as well.
1063        let paren_pattern =
1064            fields.len() == 1 && !(#[allow(non_exhaustive_omitted_patterns)] match trailing_comma {
    Trailing::Yes => true,
    _ => false,
}matches!(trailing_comma, Trailing::Yes) || fields[0].is_rest());
1065
1066        let pat = if paren_pattern {
1067            let pat = fields.into_iter().next().unwrap();
1068            let close_paren = self.prev_token.span;
1069
1070            match &pat.kind {
1071                // recover ranges with parentheses around the `(start)..`
1072                PatKind::Expr(begin)
1073                    if self.may_recover()
1074                        && let Some(form) = self.parse_range_end() =>
1075                {
1076                    self.dcx().emit_err(UnexpectedParenInRangePat {
1077                        span: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [open_paren, close_paren]))vec![open_paren, close_paren],
1078                        sugg: UnexpectedParenInRangePatSugg {
1079                            start_span: open_paren,
1080                            end_span: close_paren,
1081                        },
1082                    });
1083
1084                    self.parse_pat_range_begin_with(begin.clone(), form)?
1085                }
1086                // recover ranges with parentheses around the `(start)..`
1087                PatKind::Err(guar)
1088                    if self.may_recover()
1089                        && let Some(form) = self.parse_range_end() =>
1090                {
1091                    self.dcx().emit_err(UnexpectedParenInRangePat {
1092                        span: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [open_paren, close_paren]))vec![open_paren, close_paren],
1093                        sugg: UnexpectedParenInRangePatSugg {
1094                            start_span: open_paren,
1095                            end_span: close_paren,
1096                        },
1097                    });
1098
1099                    self.parse_pat_range_begin_with(self.mk_expr_err(pat.span, *guar), form)?
1100                }
1101
1102                // (pat) with optional parentheses
1103                _ => PatKind::Paren(Box::new(pat)),
1104            }
1105        } else {
1106            PatKind::Tuple(fields)
1107        };
1108
1109        Ok(match self.maybe_recover_trailing_expr(open_paren.to(self.prev_token.span), false) {
1110            None => pat,
1111            Some((guar, _)) => PatKind::Err(guar),
1112        })
1113    }
1114
1115    /// Report a tuple or parenthesized pattern whose elements carry inline type
1116    /// annotations, e.g. `let (a: bool, b: u8) = ...;`. This is invalid syntax;
1117    /// the element types have to be written together as a tuple type after the
1118    /// pattern, i.e. `let (a, b): (bool, u8) = ...;`. `tys` are the annotations
1119    /// that were written, indexed into `fields`.
1120    fn recover_tuple_pat_type_ascription(
1121        &self,
1122        open_paren: Span,
1123        fields: &[Pat],
1124        tys: &[(usize, Span, Box<Ty>)],
1125        trailing_comma: Trailing,
1126        syntax_loc: Option<PatternLocation>,
1127    ) {
1128        let close_paren = self.prev_token.span;
1129
1130        // Point at every inline type annotation.
1131        let ty_spans: Vec<Span> = tys.iter().map(|(_, colon, ty)| colon.to(ty.span)).collect();
1132        // `(a: T)` is a parenthesized pattern rather than a one element tuple.
1133        let paren_pattern =
1134            fields.len() == 1 && #[allow(non_exhaustive_omitted_patterns)] match trailing_comma {
    Trailing::No => true,
    _ => false,
}matches!(trailing_comma, Trailing::No) && !fields[0].is_rest();
1135        let mut err = self.dcx().struct_span_err(
1136            ty_spans.clone(),
1137            if paren_pattern {
1138                "a parenthesized pattern cannot be given a type"
1139            } else {
1140                "the elements of a tuple pattern cannot be given types individually"
1141            },
1142        );
1143
1144        // Only the top level pattern of a `let` binding can be followed by a
1145        // type, so that's the only place where we know how the pattern should
1146        // have been written instead. Anywhere else (`match` arms, function
1147        // parameters, nested patterns) we just recover without a suggestion.
1148        if #[allow(non_exhaustive_omitted_patterns)] match syntax_loc {
    Some(PatternLocation::LetBinding) => true,
    _ => false,
}matches!(syntax_loc, Some(PatternLocation::LetBinding)) {
1149            if self.token == token::Colon {
1150                // The pattern is already followed by a type, as in
1151                // `let (a: bool, b): (_, u8) = ...;`. Merging that type with the
1152                // inline ones isn't always possible, so just suggest dropping
1153                // the inline ones.
1154                err.multipart_suggestion(
1155                    "remove the inline type annotations",
1156                    ty_spans.into_iter().map(|span| (span, String::new())).collect(),
1157                    Applicability::MaybeIncorrect,
1158                );
1159            } else if !fields.iter().any(|pat| pat.is_rest()) {
1160                // A rest pattern stands for any number of elements, so we can't
1161                // tell how many types the tuple type would have to list.
1162                self.suggest_tuple_pat_type(
1163                    &mut err,
1164                    open_paren,
1165                    close_paren,
1166                    fields,
1167                    tys,
1168                    paren_pattern,
1169                );
1170            }
1171        }
1172        err.emit();
1173    }
1174
1175    /// Suggest rewriting `(a: bool, b: u8)` as `(a, b): (bool, u8)`, moving the
1176    /// inline type annotations into a tuple type after the pattern.
1177    fn suggest_tuple_pat_type(
1178        &self,
1179        err: &mut Diag<'a>,
1180        open_paren: Span,
1181        close_paren: Span,
1182        fields: &[Pat],
1183        tys: &[(usize, Span, Box<Ty>)],
1184        paren_pattern: bool,
1185    ) {
1186        // Build the replacement from the source snippets. Elements without an
1187        // annotation get an inferred `_` type.
1188        let mut pat_snippets = Vec::with_capacity(fields.len());
1189        let mut ty_snippets = Vec::with_capacity(fields.len());
1190        let mut tys = tys.iter().peekable();
1191        for (index, pat) in fields.iter().enumerate() {
1192            let ty_snippet = match tys.next_if(|(i, ..)| *i == index) {
1193                Some((_, _, ty)) => self.span_to_snippet(ty.span),
1194                None => Ok("_".to_string()),
1195            };
1196            let (Ok(pat_snippet), Ok(ty_snippet)) = (self.span_to_snippet(pat.span), ty_snippet)
1197            else {
1198                // We can't rebuild the pattern from source, so don't suggest anything.
1199                return;
1200            };
1201            pat_snippets.push(pat_snippet);
1202            ty_snippets.push(ty_snippet);
1203        }
1204
1205        // The type of a parenthesized pattern isn't a tuple type. A one element
1206        // tuple on the other hand keeps its trailing comma on both sides.
1207        let (suggestion, msg) = if paren_pattern {
1208            (
1209                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("({0}): {1}", pat_snippets[0],
                ty_snippets[0]))
    })format!("({}): {}", pat_snippets[0], ty_snippets[0]),
1210                "write the type after the pattern",
1211            )
1212        } else {
1213            let trailing = if fields.len() == 1 { "," } else { "" };
1214            (
1215                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("({0}{2}): ({1}{2})",
                pat_snippets.join(", "), ty_snippets.join(", "), trailing))
    })format!(
1216                    "({}{trailing}): ({}{trailing})",
1217                    pat_snippets.join(", "),
1218                    ty_snippets.join(", ")
1219                ),
1220                "to annotate the types of a tuple's elements, write them as a tuple type after \
1221                 the pattern",
1222            )
1223        };
1224        err.span_suggestion_verbose(
1225            open_paren.to(close_paren),
1226            msg,
1227            suggestion,
1228            Applicability::MaybeIncorrect,
1229        );
1230    }
1231
1232    /// Parse a mutable binding with the `mut` token already eaten.
1233    fn parse_pat_ident_mut(&mut self) -> PResult<'a, PatKind> {
1234        let mut_span = self.prev_token.span;
1235
1236        self.recover_additional_muts();
1237
1238        let byref = self.parse_byref();
1239
1240        self.recover_additional_muts();
1241
1242        // Make sure we don't allow e.g. `let mut $p;` where `$p:pat`.
1243        if let Some(MetaVarKind::Pat(_)) = self.token.is_metavar_seq() {
1244            self.expected_ident_found_err().emit();
1245        }
1246
1247        // Parse the pattern we hope to be an identifier.
1248        let mut pat = self.parse_pat_no_top_alt(Some(Expected::Identifier), None)?;
1249
1250        // If we don't have `mut $ident (@ pat)?`, error.
1251        if let PatKind::Ident(BindingMode(br @ ByRef::No, m @ Mutability::Not), ..) = &mut pat.kind
1252        {
1253            // Don't recurse into the subpattern.
1254            // `mut` on the outer binding doesn't affect the inner bindings.
1255            *br = byref;
1256            *m = Mutability::Mut;
1257        } else {
1258            // Add `mut` to any binding in the parsed pattern.
1259            let changed_any_binding = Self::make_all_value_bindings_mutable(&mut pat);
1260            self.ban_mut_general_pat(mut_span, &pat, changed_any_binding);
1261        }
1262
1263        if #[allow(non_exhaustive_omitted_patterns)] match pat.kind {
    PatKind::Ident(BindingMode(ByRef::Yes(..), Mutability::Mut), ..) => true,
    _ => false,
}matches!(pat.kind, PatKind::Ident(BindingMode(ByRef::Yes(..), Mutability::Mut), ..)) {
1264            self.psess.gated_spans.gate(sym::mut_ref, pat.span);
1265        }
1266        Ok(pat.kind)
1267    }
1268
1269    /// Turn all by-value immutable bindings in a pattern into mutable bindings.
1270    /// Returns `true` if any change was made.
1271    fn make_all_value_bindings_mutable(pat: &mut Pat) -> bool {
1272        struct AddMut(bool);
1273        impl MutVisitor for AddMut {
1274            fn visit_pat(&mut self, pat: &mut Pat) {
1275                if let PatKind::Ident(BindingMode(ByRef::No, m @ Mutability::Not), ..) =
1276                    &mut pat.kind
1277                {
1278                    self.0 = true;
1279                    *m = Mutability::Mut;
1280                }
1281                mut_visit::walk_pat(self, pat);
1282            }
1283        }
1284
1285        let mut add_mut = AddMut(false);
1286        add_mut.visit_pat(pat);
1287        add_mut.0
1288    }
1289
1290    /// Error on `mut $pat` where `$pat` is not an ident.
1291    fn ban_mut_general_pat(&self, lo: Span, pat: &Pat, changed_any_binding: bool) {
1292        self.dcx().emit_err(if changed_any_binding {
1293            InvalidMutInPattern::NestedIdent {
1294                span: lo.to(pat.span),
1295                pat: pprust::pat_to_string(pat),
1296            }
1297        } else {
1298            InvalidMutInPattern::NonIdent { span: lo.until(pat.span) }
1299        });
1300    }
1301
1302    /// Eat any extraneous `mut`s and error + recover if we ate any.
1303    fn recover_additional_muts(&mut self) {
1304        let lo = self.token.span;
1305        while self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Mut,
    token_type: crate::parser::token_type::TokenType::KwMut,
}exp!(Mut)) {}
1306        if lo == self.token.span {
1307            return;
1308        }
1309
1310        let span = lo.to(self.prev_token.span);
1311        let suggestion = span.with_hi(self.token.span.lo());
1312        self.dcx().emit_err(RepeatedMutInPattern { span, suggestion });
1313    }
1314
1315    /// Parse macro invocation
1316    fn parse_pat_mac_invoc(&mut self, path: Path) -> PResult<'a, PatKind> {
1317        self.bump();
1318        let args = self.parse_delim_args()?;
1319        let mac = Box::new(MacCall { path, args });
1320        Ok(PatKind::MacCall(mac))
1321    }
1322
1323    fn fatal_unexpected_non_pat(
1324        &mut self,
1325        err: Diag<'a>,
1326        expected: Option<Expected>,
1327    ) -> PResult<'a, Pat> {
1328        err.cancel();
1329
1330        let expected = Expected::to_string_or_fallback(expected);
1331        let msg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("expected {0}, found {1}", expected,
                super::token_descr(&self.token)))
    })format!("expected {}, found {}", expected, super::token_descr(&self.token));
1332
1333        let mut err = self.dcx().struct_span_err(self.token.span, msg);
1334        err.span_label(self.token.span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("expected {0}", expected))
    })format!("expected {expected}"));
1335
1336        let sp = self.psess.source_map().start_point(self.token.span);
1337        if let Some(sp) = self.psess.ambiguous_block_expr_parse.borrow().get(&sp) {
1338            err.subdiagnostic(ExprParenthesesNeeded::surrounding(*sp));
1339        }
1340
1341        Err(err)
1342    }
1343
1344    /// Parses the range pattern end form `".." | "..." | "..=" ;`.
1345    fn parse_range_end(&mut self) -> Option<Spanned<RangeEnd>> {
1346        let re = if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::DotDotDot,
    token_type: crate::parser::token_type::TokenType::DotDotDot,
}exp!(DotDotDot)) {
1347            RangeEnd::Included(RangeSyntax::DotDotDot)
1348        } else if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::DotDotEq,
    token_type: crate::parser::token_type::TokenType::DotDotEq,
}exp!(DotDotEq)) {
1349            RangeEnd::Included(RangeSyntax::DotDotEq)
1350        } else if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::DotDot,
    token_type: crate::parser::token_type::TokenType::DotDot,
}exp!(DotDot)) {
1351            RangeEnd::Excluded
1352        } else {
1353            return None;
1354        };
1355        Some(respan(self.prev_token.span, re))
1356    }
1357
1358    /// Parse a range pattern `$begin $form $end?` where `$form = ".." | "..." | "..=" ;`.
1359    /// `$begin $form` has already been parsed.
1360    fn parse_pat_range_begin_with(
1361        &mut self,
1362        begin: Box<Expr>,
1363        re: Spanned<RangeEnd>,
1364    ) -> PResult<'a, PatKind> {
1365        let end = if self.is_pat_range_end_start(0) {
1366            // Parsing e.g. `X..=Y`.
1367            Some(self.parse_pat_range_end()?)
1368        } else {
1369            // Parsing e.g. `X..`.
1370            if let RangeEnd::Included(_) = re.node {
1371                // FIXME(Centril): Consider semantic errors instead in `ast_validation`.
1372                self.inclusive_range_with_incorrect_end();
1373            }
1374            None
1375        };
1376        Ok(PatKind::Range(Some(begin), end, re))
1377    }
1378
1379    pub(super) fn inclusive_range_with_incorrect_end(&mut self) -> ErrorGuaranteed {
1380        let tok = &self.token;
1381        let span = self.prev_token.span;
1382        // If the user typed "..==" or "...=" instead of "..=", we want to give them
1383        // a specific error message telling them to use "..=".
1384        // If they typed "..=>", suggest they use ".. =>".
1385        // Otherwise, we assume that they meant to type a half open exclusive
1386        // range and give them an error telling them to do that instead.
1387        let no_space = tok.span.lo() == span.hi();
1388        match tok.kind {
1389            token::Eq if no_space => {
1390                let span_with_eq = span.to(tok.span);
1391
1392                // Ensure the user doesn't receive unhelpful unexpected token errors
1393                self.bump();
1394                if self.is_pat_range_end_start(0) {
1395                    let _ = self.parse_pat_range_end().map_err(|e| e.cancel());
1396                }
1397
1398                self.dcx().emit_err(InclusiveRangeExtraEquals { span: span_with_eq })
1399            }
1400            token::Gt if self.prev_token.kind == token::DotDotEq && no_space => {
1401                self.dcx().emit_err(InclusiveRangeMatchArrow { span, arrow: tok.span })
1402            }
1403            _ => self.dcx().emit_err(InclusiveRangeNoEnd { span }),
1404        }
1405    }
1406
1407    /// Parse a range-to pattern, `..X` or `..=X` where `X` remains to be parsed.
1408    ///
1409    /// The form `...X` is prohibited to reduce confusion with the potential
1410    /// expression syntax `...expr` for splatting in expressions.
1411    fn parse_pat_range_to(&mut self, mut re: Spanned<RangeEnd>) -> PResult<'a, PatKind> {
1412        let end = self.parse_pat_range_end()?;
1413        if let RangeEnd::Included(syn @ RangeSyntax::DotDotDot) = &mut re.node {
1414            *syn = RangeSyntax::DotDotEq;
1415            self.dcx().emit_err(DotDotDotRangeToPatternNotAllowed { span: re.span });
1416        }
1417        Ok(PatKind::Range(None, Some(end), re))
1418    }
1419
1420    /// Is the token `dist` away from the current suitable as the start of a range patterns end?
1421    fn is_pat_range_end_start(&self, dist: usize) -> bool {
1422        self.check_inline_const(dist)
1423            || self.look_ahead(dist, |t| {
1424                t.is_path_start() // e.g. `MY_CONST`;
1425                || *t == token::Dot // e.g. `.5` for recovery;
1426                || #[allow(non_exhaustive_omitted_patterns)] match t.kind {
    token::Literal(..) | token::Minus => true,
    _ => false,
}matches!(t.kind, token::Literal(..) | token::Minus)
1427                || t.is_bool_lit()
1428                || t.is_metavar_expr()
1429                || t.is_lifetime() // recover `'a` instead of `'a'`
1430                || (self.may_recover() // recover leading `(`
1431                    && *t == token::OpenParen
1432                    && self.look_ahead(dist + 1, |t| *t != token::OpenParen)
1433                    && self.is_pat_range_end_start(dist + 1))
1434            })
1435    }
1436
1437    /// Parse a range pattern end bound
1438    fn parse_pat_range_end(&mut self) -> PResult<'a, Box<Expr>> {
1439        // recover leading `(`
1440        let open_paren = (self.may_recover() && self.eat_noexpect(&token::OpenParen))
1441            .then_some(self.prev_token.span);
1442
1443        let bound = if self.check_inline_const(0) {
1444            self.parse_const_block(self.token.span, true)
1445        } else if self.check_path() {
1446            let lo = self.token.span;
1447            let (qself, path) = if self.eat_lt() {
1448                // Parse a qualified path
1449                let (qself, path) = self.parse_qpath(PathStyle::Pat)?;
1450                (Some(qself), path)
1451            } else {
1452                // Parse an unqualified path
1453                (None, self.parse_path(PathStyle::Pat)?)
1454            };
1455            let hi = self.prev_token.span;
1456            Ok(self.mk_expr(lo.to(hi), ExprKind::Path(qself, path)))
1457        } else {
1458            self.parse_literal_maybe_minus()
1459        }?;
1460
1461        let recovered = self.maybe_recover_trailing_expr(bound.span, true);
1462
1463        // recover trailing `)`
1464        if let Some(open_paren) = open_paren {
1465            self.expect(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::CloseParen,
    token_type: crate::parser::token_type::TokenType::CloseParen,
}exp!(CloseParen))?;
1466
1467            self.dcx().emit_err(UnexpectedParenInRangePat {
1468                span: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [open_paren, self.prev_token.span]))vec![open_paren, self.prev_token.span],
1469                sugg: UnexpectedParenInRangePatSugg {
1470                    start_span: open_paren,
1471                    end_span: self.prev_token.span,
1472                },
1473            });
1474        }
1475
1476        Ok(match recovered {
1477            Some((guar, sp)) => self.mk_expr_err(sp, guar),
1478            None => bound,
1479        })
1480    }
1481
1482    /// Is this the start of a pattern beginning with a path?
1483    fn is_start_of_pat_with_path(&mut self) -> bool {
1484        self.check_path()
1485        // Just for recovery (see `can_be_ident`).
1486        || self.token.is_ident() && !self.token.is_bool_lit() && !self.token.is_keyword(kw::In)
1487    }
1488
1489    /// Would `parse_pat_ident` be appropriate here?
1490    fn can_be_ident_pat(&mut self) -> bool {
1491        self.check_ident()
1492        && !self.token.is_bool_lit() // Avoid `true` or `false` as a binding as it is a literal.
1493        && !self.token.is_path_segment_keyword() // Avoid e.g. `Self` as it is a path.
1494        // Avoid `in`. Due to recovery in the list parser this messes with `for ( $pat in $expr )`.
1495        && !self.token.is_keyword(kw::In)
1496        // Try to do something more complex?
1497        && self.look_ahead(1, |t| !#[allow(non_exhaustive_omitted_patterns)] match t.kind {
    token::OpenParen | token::OpenBrace | token::DotDotDot | token::DotDotEq |
        token::DotDot | token::PathSep | token::Bang => true,
    _ => false,
}matches!(t.kind, token::OpenParen // A tuple struct pattern.
1498            | token::OpenBrace // A struct pattern.
1499            | token::DotDotDot | token::DotDotEq | token::DotDot // A range pattern.
1500            | token::PathSep // A tuple / struct variant pattern.
1501            | token::Bang)) // A macro expanding to a pattern.
1502    }
1503
1504    /// Parses `ident` or `ident @ pat`.
1505    /// Used by the copy foo and ref foo patterns to give a good
1506    /// error message when parsing mistakes like `ref foo(a, b)`.
1507    fn parse_pat_ident(
1508        &mut self,
1509        binding_annotation: BindingMode,
1510        syntax_loc: Option<PatternLocation>,
1511    ) -> PResult<'a, PatKind> {
1512        let ident = self.parse_ident_common(false)?;
1513
1514        if self.may_recover()
1515            && !#[allow(non_exhaustive_omitted_patterns)] match syntax_loc {
    Some(PatternLocation::FunctionParameter) => true,
    _ => false,
}matches!(syntax_loc, Some(PatternLocation::FunctionParameter))
1516            && self.check_noexpect(&token::Lt)
1517            && self.look_ahead(1, |t| t.can_begin_type())
1518        {
1519            return Err(self.dcx().create_err(GenericArgsInPatRequireTurbofishSyntax {
1520                span: self.token.span,
1521                suggest_turbofish: self.token.span.shrink_to_lo(),
1522            }));
1523        }
1524
1525        let sub = if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::At,
    token_type: crate::parser::token_type::TokenType::At,
}exp!(At)) {
1526            Some(Box::new(self.parse_pat_no_top_alt(Some(Expected::BindingPattern), None)?))
1527        } else {
1528            None
1529        };
1530
1531        // Just to be friendly, if they write something like `ref Some(i)`,
1532        // we end up here with `(` as the current token.
1533        // This shortly leads to a parse error. Note that if there is no explicit
1534        // binding mode then we do not end up here, because the lookahead
1535        // will direct us over to `parse_enum_variant()`.
1536        if self.token == token::OpenParen {
1537            return Err(self
1538                .dcx()
1539                .create_err(EnumPatternInsteadOfIdentifier { span: self.prev_token.span }));
1540        }
1541
1542        // Check for method calls after the `ident`,
1543        // but not `ident @ subpat` as `subpat` was already checked and `ident` continues with `@`.
1544
1545        let pat = if sub.is_none()
1546            && let Some((guar, _)) = self.maybe_recover_trailing_expr(ident.span, false)
1547        {
1548            PatKind::Err(guar)
1549        } else {
1550            PatKind::Ident(binding_annotation, ident, sub)
1551        };
1552        Ok(pat)
1553    }
1554
1555    /// Parse a struct ("record") pattern (e.g. `Foo { ... }` or `Foo::Bar { ... }`).
1556    fn parse_pat_struct(&mut self, qself: Option<Box<QSelf>>, path: Path) -> PResult<'a, PatKind> {
1557        if qself.is_some() {
1558            // Feature gate the use of qualified paths in patterns
1559            self.psess.gated_spans.gate(sym::more_qualified_paths, path.span);
1560        }
1561        self.bump();
1562        let (fields, etc) = self.parse_pat_fields().unwrap_or_else(|mut e| {
1563            e.span_label(path.span, "while parsing the fields for this pattern");
1564            let guar = e.emit();
1565            self.recover_stmt();
1566            // When recovering, pretend we had `Foo { .. }`, to avoid cascading errors.
1567            (ThinVec::new(), PatFieldsRest::Recovered(guar))
1568        });
1569        self.bump();
1570        Ok(PatKind::Struct(qself, path, fields, etc))
1571    }
1572
1573    /// Parse tuple struct or tuple variant pattern (e.g. `Foo(...)` or `Foo::Bar(...)`).
1574    fn parse_pat_tuple_struct(
1575        &mut self,
1576        qself: Option<Box<QSelf>>,
1577        path: Path,
1578    ) -> PResult<'a, PatKind> {
1579        let (fields, _) = self.parse_paren_comma_seq(|p| {
1580            p.parse_pat_allow_top_guard(
1581                None,
1582                RecoverComma::No,
1583                RecoverColon::No,
1584                CommaRecoveryMode::EitherTupleOrPipe,
1585            )
1586        })?;
1587        if qself.is_some() {
1588            self.psess.gated_spans.gate(sym::more_qualified_paths, path.span);
1589        }
1590        Ok(PatKind::TupleStruct(qself, path, fields))
1591    }
1592
1593    /// Are we sure this could not possibly be the start of a pattern?
1594    ///
1595    /// Currently, this only accounts for tokens that can follow identifiers
1596    /// in patterns, but this can be extended as necessary.
1597    fn isnt_pattern_start(&self) -> bool {
1598        [
1599            token::Eq,
1600            token::Colon,
1601            token::Comma,
1602            token::Semi,
1603            token::At,
1604            token::OpenBrace,
1605            token::CloseBrace,
1606            token::CloseParen,
1607        ]
1608        .contains(&self.token.kind)
1609    }
1610
1611    fn parse_pat_builtin(&mut self) -> PResult<'a, PatKind> {
1612        self.parse_builtin(|self_, _lo, ident| {
1613            Ok(match ident.name {
1614                // builtin#deref(PAT)
1615                sym::deref => {
1616                    Some(ast::PatKind::Deref(Box::new(self_.parse_pat_allow_top_guard(
1617                        None,
1618                        RecoverComma::Yes,
1619                        RecoverColon::Yes,
1620                        CommaRecoveryMode::LikelyTuple,
1621                    )?)))
1622                }
1623                _ => None,
1624            })
1625        })
1626    }
1627
1628    // FIXME: remove this entirely eventually
1629    /// Parses the removed `box pat` syntax to provide a more helpful error message.
1630    fn parse_pat_box(&mut self) -> PResult<'a, PatKind> {
1631        let box_span = self.prev_token.span;
1632
1633        if self.isnt_pattern_start() {
1634            let descr = super::token_descr(&self.token);
1635            self.dcx().emit_err(diagnostics::BoxNotPat {
1636                span: self.token.span,
1637                kw: box_span,
1638                lo: box_span.shrink_to_lo(),
1639                descr,
1640            });
1641
1642            // We cannot use `parse_pat_ident()` since it will complain `box`
1643            // is not an identifier.
1644            let sub = if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::At,
    token_type: crate::parser::token_type::TokenType::At,
}exp!(At)) {
1645                Some(Box::new(self.parse_pat_no_top_alt(Some(Expected::BindingPattern), None)?))
1646            } else {
1647                None
1648            };
1649
1650            Ok(PatKind::Ident(BindingMode::NONE, Ident::new(kw::Box, box_span), sub))
1651        } else {
1652            let pat = Box::new(self.parse_pat_with_range_pat(false, None, None)?);
1653            self.dcx().emit_err(diagnostics::BoxPatternsRemoved {
1654                span: box_span.to(self.prev_token.span),
1655            });
1656            // Treat the box pattern like a deref pattern to avoid lots of "value not found" errors.
1657            Ok(PatKind::Deref(pat))
1658        }
1659    }
1660
1661    /// Parses the fields of a struct-like pattern.
1662    fn parse_pat_fields(&mut self) -> PResult<'a, (ThinVec<PatField>, PatFieldsRest)> {
1663        let mut fields: ThinVec<PatField> = ThinVec::new();
1664        let mut etc = PatFieldsRest::None;
1665        let mut ate_comma = true;
1666        let mut delayed_err: Option<Diag<'a>> = None;
1667        let mut first_etc_and_maybe_comma_span = None;
1668        let mut last_non_comma_dotdot_span = None;
1669
1670        while self.token != token::CloseBrace {
1671            // check that a comma comes after every field
1672            if !ate_comma {
1673                let err = if self.token == token::At {
1674                    let prev_field = fields
1675                        .last()
1676                        .expect("Unreachable on first iteration, not empty otherwise")
1677                        .ident;
1678                    self.report_misplaced_at_in_struct_pat(prev_field)
1679                } else {
1680                    let mut err = self
1681                        .dcx()
1682                        .create_err(ExpectedCommaAfterPatternField { span: self.token.span });
1683                    self.recover_misplaced_pattern_modifiers(&fields, &mut err);
1684                    err
1685                };
1686                if let Some(delayed) = delayed_err {
1687                    delayed.emit();
1688                }
1689                return Err(err);
1690            }
1691            ate_comma = false;
1692
1693            if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::DotDot,
    token_type: crate::parser::token_type::TokenType::DotDot,
}exp!(DotDot))
1694                || self.check_noexpect(&token::DotDotDot)
1695                || self.check_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Underscore,
    token_type: crate::parser::token_type::TokenType::KwUnderscore,
}exp!(Underscore))
1696            {
1697                etc = PatFieldsRest::Rest(self.token.span);
1698                let mut etc_sp = self.token.span;
1699                if first_etc_and_maybe_comma_span.is_none() {
1700                    if let Some(comma_tok) =
1701                        self.look_ahead(1, |&t| if t == token::Comma { Some(t) } else { None })
1702                    {
1703                        let nw_span = self
1704                            .psess
1705                            .source_map()
1706                            .span_extend_to_line(comma_tok.span)
1707                            .trim_start(comma_tok.span.shrink_to_lo())
1708                            .map(|s| self.psess.source_map().span_until_non_whitespace(s));
1709                        first_etc_and_maybe_comma_span = nw_span.map(|s| etc_sp.to(s));
1710                    } else {
1711                        first_etc_and_maybe_comma_span =
1712                            Some(self.psess.source_map().span_until_non_whitespace(etc_sp));
1713                    }
1714                }
1715
1716                self.recover_bad_dot_dot();
1717                self.bump(); // `..` || `...` || `_`
1718
1719                if self.token == token::CloseBrace {
1720                    break;
1721                }
1722                let token_str = super::token_descr(&self.token);
1723                let msg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("expected `}}`, found {0}",
                token_str))
    })format!("expected `}}`, found {token_str}");
1724                let mut err = self.dcx().struct_span_err(self.token.span, msg);
1725
1726                err.span_label(self.token.span, "expected `}`");
1727                let mut comma_sp = None;
1728                if self.token == token::Comma {
1729                    // Issue #49257
1730                    let nw_span =
1731                        self.psess.source_map().span_until_non_whitespace(self.token.span);
1732                    etc_sp = etc_sp.to(nw_span);
1733                    err.span_label(
1734                        etc_sp,
1735                        "`..` must be at the end and cannot have a trailing comma",
1736                    );
1737                    comma_sp = Some(self.token.span);
1738                    self.bump();
1739                    ate_comma = true;
1740                }
1741
1742                if self.token == token::CloseBrace {
1743                    // If the struct looks otherwise well formed, recover and continue.
1744                    if let Some(sp) = comma_sp {
1745                        err.span_suggestion_short(
1746                            sp,
1747                            "remove this comma",
1748                            "",
1749                            Applicability::MachineApplicable,
1750                        );
1751                    }
1752                    err.emit();
1753                    break;
1754                } else if self.token.is_ident() && ate_comma {
1755                    // Accept fields coming after `..,`.
1756                    // This way we avoid "pattern missing fields" errors afterwards.
1757                    // We delay this error until the end in order to have a span for a
1758                    // suggested fix.
1759                    if let Some(delayed_err) = delayed_err {
1760                        delayed_err.emit();
1761                        return Err(err);
1762                    } else {
1763                        delayed_err = Some(err);
1764                    }
1765                } else {
1766                    if let Some(err) = delayed_err {
1767                        err.emit();
1768                    }
1769                    return Err(err);
1770                }
1771            }
1772
1773            let attrs = match self.parse_outer_attributes() {
1774                Ok(attrs) => attrs,
1775                Err(err) => {
1776                    if let Some(delayed) = delayed_err {
1777                        delayed.emit();
1778                    }
1779                    return Err(err);
1780                }
1781            };
1782            let lo = self.token.span;
1783
1784            let field = self.collect_tokens(None, attrs, ForceCollect::No, |this, attrs| {
1785                let field = match this.parse_pat_field(lo, attrs) {
1786                    Ok(field) => Ok(field),
1787                    Err(err) => {
1788                        if let Some(delayed_err) = delayed_err.take() {
1789                            delayed_err.emit();
1790                        }
1791                        return Err(err);
1792                    }
1793                }?;
1794                ate_comma = this.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Comma,
    token_type: crate::parser::token_type::TokenType::Comma,
}exp!(Comma));
1795
1796                last_non_comma_dotdot_span = Some(this.prev_token.span);
1797
1798                // We just ate a comma, so there's no need to capture a trailing token.
1799                Ok((field, Trailing::No, UsePreAttrPos::No))
1800            })?;
1801
1802            fields.push(field)
1803        }
1804
1805        if let Some(mut err) = delayed_err {
1806            if let Some(first_etc_span) = first_etc_and_maybe_comma_span {
1807                if self.prev_token == token::DotDot {
1808                    // We have `.., x, ..`.
1809                    err.multipart_suggestion(
1810                        "remove the starting `..`",
1811                        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(first_etc_span, String::new())]))vec![(first_etc_span, String::new())],
1812                        Applicability::MachineApplicable,
1813                    );
1814                } else if let Some(last_non_comma_dotdot_span) = last_non_comma_dotdot_span {
1815                    // We have `.., x`.
1816                    err.multipart_suggestion(
1817                        "move the `..` to the end of the field list",
1818                        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(first_etc_span, String::new()),
                (self.token.span.to(last_non_comma_dotdot_span.shrink_to_hi()),
                    ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0} .. }}",
                                    if ate_comma { "" } else { "," }))
                        }))]))vec![
1819                            (first_etc_span, String::new()),
1820                            (
1821                                self.token.span.to(last_non_comma_dotdot_span.shrink_to_hi()),
1822                                format!("{} .. }}", if ate_comma { "" } else { "," }),
1823                            ),
1824                        ],
1825                        Applicability::MachineApplicable,
1826                    );
1827                }
1828            }
1829            err.emit();
1830        }
1831        Ok((fields, etc))
1832    }
1833
1834    fn report_misplaced_at_in_struct_pat(&self, prev_field: Ident) -> Diag<'a> {
1835        if true {
    {
        match (&self.token, &token::At) {
            (left_val, right_val) => {
                if !(*left_val == *right_val) {
                    let kind = ::core::panicking::AssertKind::Eq;
                    ::core::panicking::assert_failed(kind, &*left_val,
                        &*right_val, ::core::option::Option::None);
                }
            }
        }
    };
};debug_assert_eq!(self.token, token::At);
1836        let span = prev_field.span.to(self.token.span);
1837        if let Some(dot_dot_span) =
1838            self.look_ahead(1, |t| if t == &token::DotDot { Some(t.span) } else { None })
1839        {
1840            self.dcx().create_err(AtDotDotInStructPattern {
1841                span: span.to(dot_dot_span),
1842                remove: span.until(dot_dot_span),
1843                ident: prev_field,
1844            })
1845        } else {
1846            self.dcx().create_err(AtInStructPattern { span })
1847        }
1848    }
1849
1850    /// If the user writes `S { ref field: name }` instead of `S { field: ref name }`, we suggest
1851    /// the correct code.
1852    fn recover_misplaced_pattern_modifiers(&self, fields: &ThinVec<PatField>, err: &mut Diag<'a>) {
1853        if let Some(last) = fields.last()
1854            && last.is_shorthand
1855            && let PatKind::Ident(binding, ident, None) = last.pat.kind
1856            && binding != BindingMode::NONE
1857            && self.token == token::Colon
1858            // We found `ref mut? ident:`, try to parse a `name,` or `name }`.
1859            && let Some(name_span) = self.look_ahead(1, |t| t.is_ident().then(|| t.span))
1860            && self.look_ahead(2, |t| {
1861                t == &token::Comma || t == &token::CloseBrace
1862            })
1863        {
1864            let span = last.pat.span.with_hi(ident.span.lo());
1865            // We have `S { ref field: name }` instead of `S { field: ref name }`
1866            err.multipart_suggestion(
1867                "the pattern modifiers belong after the `:`",
1868                ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(span, String::new()),
                (name_span.shrink_to_lo(),
                    binding.prefix_str().to_string())]))vec![
1869                    (span, String::new()),
1870                    (name_span.shrink_to_lo(), binding.prefix_str().to_string()),
1871                ],
1872                Applicability::MachineApplicable,
1873            );
1874        }
1875    }
1876
1877    /// Recover on `...` or `_` as if it were `..` to avoid further errors.
1878    /// See issue #46718.
1879    fn recover_bad_dot_dot(&self) {
1880        if self.token == token::DotDot {
1881            return;
1882        }
1883
1884        let token_str = pprust::token_to_string(&self.token);
1885        self.dcx().emit_err(DotDotDotForRemainingFields { span: self.token.span, token_str });
1886    }
1887
1888    /// Parse a field in a struct pattern.
1889    ///
1890    /// ```ebnf
1891    /// PatField = FieldName ":" Pat | "mut"? ByRef? Ident
1892    /// ```
1893    fn parse_pat_field(&mut self, lo: Span, attrs: AttrVec) -> PResult<'a, PatField> {
1894        let hi;
1895        let (subpat, fieldname, is_shorthand) = if self.look_ahead(1, |t| t == &token::Colon) {
1896            let fieldname = self.parse_field_name()?;
1897            self.bump();
1898            let pat = self.parse_pat_allow_top_guard(
1899                None,
1900                RecoverComma::No,
1901                RecoverColon::No,
1902                CommaRecoveryMode::EitherTupleOrPipe,
1903            )?;
1904            hi = pat.span;
1905            (pat, fieldname, false)
1906        } else {
1907            // FIXME: remove the recovery for parsing box patterrns entirely
1908            let is_box = self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::Box,
    token_type: crate::parser::token_type::TokenType::KwBox,
}exp!(Box));
1909            if is_box {
1910                self.dcx()
1911                    .create_err(diagnostics::BoxPatternsRemoved { span: self.prev_token.span })
1912                    .emit();
1913            }
1914            let boxed_span = self.token.span;
1915            let mutability = self.parse_mutability();
1916            let by_ref = self.parse_byref();
1917
1918            let fieldname = self.parse_ident_common(false)?;
1919            hi = self.prev_token.span;
1920            let ann = BindingMode(by_ref, mutability);
1921            let fieldpat = self.mk_pat_ident(boxed_span.to(hi), ann, fieldname);
1922            if #[allow(non_exhaustive_omitted_patterns)] match fieldpat.kind {
    PatKind::Ident(BindingMode(ByRef::Yes(..), Mutability::Mut), ..) => true,
    _ => false,
}matches!(
1923                fieldpat.kind,
1924                PatKind::Ident(BindingMode(ByRef::Yes(..), Mutability::Mut), ..)
1925            ) {
1926                self.psess.gated_spans.gate(sym::mut_ref, fieldpat.span);
1927            }
1928            let subpat = if is_box {
1929                self.mk_pat(lo.to(hi), PatKind::Deref(Box::new(fieldpat)))
1930            } else {
1931                fieldpat
1932            };
1933            (subpat, fieldname, true)
1934        };
1935
1936        Ok(PatField {
1937            ident: fieldname,
1938            pat: Box::new(subpat),
1939            is_shorthand,
1940            attrs,
1941            id: ast::DUMMY_NODE_ID,
1942            span: lo.to(hi),
1943            is_placeholder: false,
1944        })
1945    }
1946
1947    pub(super) fn mk_pat_ident(&self, span: Span, ann: BindingMode, ident: Ident) -> Pat {
1948        self.mk_pat(span, PatKind::Ident(ann, ident, None))
1949    }
1950
1951    pub(super) fn mk_pat(&self, span: Span, kind: PatKind) -> Pat {
1952        Pat { kind, span, id: ast::DUMMY_NODE_ID }
1953    }
1954}