Skip to main content

rustc_parse/parser/
path.rs

1use std::mem;
2
3use rustc_ast::token::{self, MetaVarKind, Token, TokenKind};
4use rustc_ast::{
5    self as ast, AngleBracketedArg, AngleBracketedArgs, AnonConst, AssocItemConstraint,
6    AssocItemConstraintKind, BlockCheckMode, GenericArg, GenericArgs, Generics, ParenthesizedArgs,
7    Path, PathSegment, QSelf,
8};
9use rustc_errors::{Applicability, Diag, PResult};
10use rustc_span::{BytePos, Ident, Span, kw, sym};
11use thin_vec::ThinVec;
12use tracing::debug;
13
14use super::ty::{AllowPlus, RecoverQPath, RecoverReturnSign};
15use super::{Parser, Restrictions, TokenType};
16use crate::ast::{PatKind, TyKind};
17use crate::diagnostics::{
18    self, ConstGenericWithoutBraces, ConstGenericWithoutBracesSugg, PathFoundAttributeInParams,
19    PathFoundCVariadicParams, PathSingleColon, PathTripleColon,
20};
21use crate::exp;
22use crate::parser::{CommaRecoveryMode, Expr, FnContext, FnParseMode, RecoverColon, RecoverComma};
23
24/// Specifies how to parse a path.
25#[derive(#[automatically_derived]
impl ::core::marker::Copy for PathStyle { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PathStyle { }
#[automatically_derived]
impl ::core::clone::Clone for PathStyle {
    #[inline]
    fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for PathStyle { }
#[automatically_derived]
impl ::core::cmp::PartialEq for PathStyle {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq)]
26pub enum PathStyle {
27    /// In some contexts, notably in expressions, paths with generic arguments are ambiguous
28    /// with something else. For example, in expressions `segment < ....` can be interpreted
29    /// as a comparison and `segment ( ....` can be interpreted as a function call.
30    /// In all such contexts the non-path interpretation is preferred by default for practical
31    /// reasons, but the path interpretation can be forced by the disambiguator `::`, e.g.
32    /// `x<y>` - comparisons, `x::<y>` - unambiguously a path.
33    ///
34    /// Also, a path may never be followed by a `:`. This means that we can eagerly recover if
35    /// we encounter it.
36    Expr,
37    /// The same as `Expr`, but may be followed by a `:`.
38    /// For example, this code:
39    /// ```rust
40    /// struct S;
41    ///
42    /// let S: S;
43    /// //  ^ Followed by a `:`
44    /// ```
45    Pat,
46    /// In other contexts, notably in types, no ambiguity exists and paths can be written
47    /// without the disambiguator, e.g., `x<y>` - unambiguously a path.
48    /// Paths with disambiguators are still accepted, `x::<Y>` - unambiguously a path too.
49    Type,
50    /// A path with generic arguments disallowed, e.g., `foo::bar::Baz`, used in imports,
51    /// visibilities or attributes.
52    /// Technically, this variant is unnecessary and e.g., `Expr` can be used instead
53    /// (paths in "mod" contexts have to be checked later for absence of generic arguments
54    /// anyway, due to macros), but it is used to avoid weird suggestions about expected
55    /// tokens when something goes wrong.
56    Mod,
57}
58
59impl PathStyle {
60    fn has_generic_ambiguity(&self) -> bool {
61        #[allow(non_exhaustive_omitted_patterns)] match self {
    Self::Expr | Self::Pat => true,
    _ => false,
}matches!(self, Self::Expr | Self::Pat)
62    }
63}
64
65impl<'a> Parser<'a> {
66    /// Parses a qualified path.
67    /// Assumes that the leading `<` has been parsed already.
68    ///
69    /// `qualified_path = <type [as trait_ref]>::path`
70    ///
71    /// # Examples
72    /// `<T>::default`
73    /// `<T as U>::a`
74    /// `<T as U>::F::a<S>` (without disambiguator)
75    /// `<T as U>::F::a::<S>` (with disambiguator)
76    pub(super) fn parse_qpath(&mut self, style: PathStyle) -> PResult<'a, (Box<QSelf>, Path)> {
77        let lo = self.prev_token.span;
78        let ty = self.parse_ty()?;
79
80        // `path` will contain the prefix of the path up to the `>`,
81        // if any (e.g., `U` in the `<T as U>::*` examples
82        // above). `path_span` has the span of that path, or an empty
83        // span in the case of something like `<T>::Bar`.
84        let (mut path, path_span);
85        if self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
    kw: rustc_span::symbol::kw::As,
    token_type: crate::parser::token_type::TokenType::KwAs,
}exp!(As)) {
86            let path_lo = self.token.span;
87            path = self.parse_path(PathStyle::Type)?;
88            path_span = path_lo.to(self.prev_token.span);
89        } else {
90            path_span = self.token.span.to(self.token.span);
91            path = ast::Path { segments: ThinVec::new(), span: path_span };
92        }
93
94        // See doc comment for `unmatched_angle_bracket_count`.
95        self.expect(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Gt,
    token_type: crate::parser::token_type::TokenType::Gt,
}exp!(Gt))?;
96        if self.unmatched_angle_bracket_count > 0 {
97            self.unmatched_angle_bracket_count -= 1;
98            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs:98",
                        "rustc_parse::parser::path", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs"),
                        ::tracing_core::__macro_support::Option::Some(98u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_parse::parser::path"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("parse_qpath: (decrement) count={0:?}",
                                                    self.unmatched_angle_bracket_count) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("parse_qpath: (decrement) count={:?}", self.unmatched_angle_bracket_count);
99        }
100
101        let is_import_coupler = self.is_import_coupler();
102        if !is_import_coupler && !self.recover_colon_before_qpath_proj() {
103            self.expect(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::PathSep,
    token_type: crate::parser::token_type::TokenType::PathSep,
}exp!(PathSep))?;
104        }
105
106        let qself = Box::new(QSelf { ty, path_span, position: path.segments.len() });
107        if !is_import_coupler {
108            self.parse_path_segments(&mut path.segments, style, None)?;
109        }
110
111        Ok((qself, Path { segments: path.segments, span: lo.to(self.prev_token.span) }))
112    }
113
114    /// Recover from an invalid single colon, when the user likely meant a qualified path.
115    /// We avoid emitting this if not followed by an identifier, as our assumption that the user
116    /// intended this to be a qualified path may not be correct.
117    ///
118    /// ```ignore (diagnostics)
119    /// <Bar as Baz<T>>:Qux
120    ///                ^ help: use double colon
121    /// ```
122    fn recover_colon_before_qpath_proj(&mut self) -> bool {
123        if !self.check_noexpect(&TokenKind::Colon)
124            || self.look_ahead(1, |t| !t.is_non_reserved_ident())
125        {
126            return false;
127        }
128
129        self.bump(); // colon
130
131        self.dcx()
132            .struct_span_err(
133                self.prev_token.span,
134                "found single colon before projection in qualified path",
135            )
136            .with_span_suggestion(
137                self.prev_token.span,
138                "use double colon",
139                "::",
140                Applicability::MachineApplicable,
141            )
142            .emit();
143
144        true
145    }
146
147    pub fn parse_path(&mut self, style: PathStyle) -> PResult<'a, Path> {
148        self.parse_path_inner(style, None)
149    }
150
151    /// Parses simple paths.
152    ///
153    /// `path = [::] segment+`
154    /// `segment = ident | ident[::]<args> | ident[::](args) [-> type]`
155    ///
156    /// # Examples
157    /// `a::b::C<D>` (without disambiguator)
158    /// `a::b::C::<D>` (with disambiguator)
159    /// `Fn(Args)` (without disambiguator)
160    /// `Fn::(Args)` (with disambiguator)
161    pub(super) fn parse_path_inner(
162        &mut self,
163        style: PathStyle,
164        ty_generics: Option<&Generics>,
165    ) -> PResult<'a, Path> {
166        let reject_generics_if_mod_style = |parser: &Parser<'_>, path: Path| {
167            // Ensure generic arguments don't end up in attribute paths, such as:
168            //
169            //     macro_rules! m {
170            //         ($p:path) => { #[$p] struct S; }
171            //     }
172            //
173            //     m!(inline<u8>); //~ ERROR: unexpected generic arguments in path
174            //
175            if style == PathStyle::Mod && path.segments.iter().any(|segment| segment.args.is_some())
176            {
177                let span = path
178                    .segments
179                    .iter()
180                    .filter_map(|segment| segment.args.as_ref())
181                    .map(|arg| arg.span())
182                    .collect::<Vec<_>>();
183                parser.dcx().emit_err(diagnostics::GenericsInPath { span });
184                // Ignore these arguments to prevent unexpected behaviors.
185                let segments = path
186                    .segments
187                    .iter()
188                    .map(|segment| PathSegment { ident: segment.ident, id: segment.id, args: None })
189                    .collect();
190                Path { segments, ..path }
191            } else {
192                path
193            }
194        };
195
196        if let Some(path) =
197            self.eat_metavar_seq(MetaVarKind::Path, |this| this.parse_path(PathStyle::Type))
198        {
199            return Ok(reject_generics_if_mod_style(self, path));
200        }
201
202        // If we have a `ty` metavar in the form of a path, reparse it directly as a path, instead
203        // of reparsing it as a `ty` and then extracting the path.
204        if let Some(path) = self.eat_metavar_seq(MetaVarKind::Ty { is_path: true }, |this| {
205            this.parse_path(PathStyle::Type)
206        }) {
207            return Ok(reject_generics_if_mod_style(self, path));
208        }
209
210        let lo = self.token.span;
211        let mut segments = ThinVec::new();
212        let mod_sep_ctxt = self.token.span.ctxt();
213        if self.eat_path_sep() {
214            segments.push(PathSegment::path_root(lo.shrink_to_lo().with_ctxt(mod_sep_ctxt)));
215        }
216        self.parse_path_segments(&mut segments, style, ty_generics)?;
217        Ok(Path { segments, span: lo.to(self.prev_token.span) })
218    }
219
220    pub(super) fn parse_path_segments(
221        &mut self,
222        segments: &mut ThinVec<PathSegment>,
223        style: PathStyle,
224        ty_generics: Option<&Generics>,
225    ) -> PResult<'a, ()> {
226        loop {
227            let segment = self.parse_path_segment(style, ty_generics)?;
228            if style.has_generic_ambiguity() {
229                // In order to check for trailing angle brackets, we must have finished
230                // recursing (`parse_path_segment` can indirectly call this function),
231                // that is, the next token must be the highlighted part of the below example:
232                //
233                // `Foo::<Bar as Baz<T>>::Qux`
234                //                      ^ here
235                //
236                // As opposed to the below highlight (if we had only finished the first
237                // recursion):
238                //
239                // `Foo::<Bar as Baz<T>>::Qux`
240                //                     ^ here
241                //
242                // `PathStyle::Expr` is only provided at the root invocation and never in
243                // `parse_path_segment` to recurse and therefore can be checked to maintain
244                // this invariant.
245                self.check_trailing_angle_brackets(&segment, &[crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::PathSep,
    token_type: crate::parser::token_type::TokenType::PathSep,
}exp!(PathSep)]);
246            }
247            segments.push(segment);
248
249            if self.is_import_coupler() || !self.eat_path_sep() {
250                // IMPORTANT: We can *only ever* treat single colons as typo'ed double colons in
251                // expression contexts (!) since only there paths cannot possibly be followed by
252                // a colon and still form a syntactically valid construct. In pattern contexts,
253                // a path may be followed by a type annotation. E.g., `let pat:ty`. In type
254                // contexts, a path may be followed by a list of bounds. E.g., `where ty:bound`.
255                if self.may_recover()
256                    && style == PathStyle::Expr // (!)
257                    && self.token == token::Colon
258                    && self.look_ahead(1, |token| token.is_non_reserved_ident())
259                {
260                    // Emit a special error message for `a::b:c` to help users
261                    // otherwise, `a: c` might have meant to introduce a new binding
262                    if self.token.span.lo() == self.prev_token.span.hi()
263                        && self.look_ahead(1, |token| self.token.span.hi() == token.span.lo())
264                    {
265                        self.bump(); // bump past the colon
266                        self.dcx().emit_err(PathSingleColon {
267                            span: self.prev_token.span,
268                            suggestion: self.prev_token.span.shrink_to_hi(),
269                        });
270                    }
271                    continue;
272                }
273
274                return Ok(());
275            }
276        }
277    }
278
279    /// Eat `::` or, potentially, `:::`.
280    #[must_use]
281    pub(super) fn eat_path_sep(&mut self) -> bool {
282        let result = self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::PathSep,
    token_type: crate::parser::token_type::TokenType::PathSep,
}exp!(PathSep));
283        if result && self.may_recover() {
284            if self.eat_noexpect(&token::Colon) {
285                self.dcx().emit_err(PathTripleColon { span: self.prev_token.span });
286            }
287        }
288        result
289    }
290
291    pub(super) fn parse_path_segment(
292        &mut self,
293        style: PathStyle,
294        ty_generics: Option<&Generics>,
295    ) -> PResult<'a, PathSegment> {
296        let ident = self.parse_path_segment_ident()?;
297        let is_args_start = |token: &Token| {
298            #[allow(non_exhaustive_omitted_patterns)] match token.kind {
    token::Lt | token::Shl | token::OpenParen | token::LArrow => true,
    _ => false,
}matches!(token.kind, token::Lt | token::Shl | token::OpenParen | token::LArrow)
299        };
300        let check_args_start = |this: &mut Self| {
301            this.expected_token_types.insert(TokenType::Lt);
302            this.expected_token_types.insert(TokenType::OpenParen);
303            is_args_start(&this.token)
304        };
305
306        Ok(
307            if style == PathStyle::Type && check_args_start(self)
308                || style != PathStyle::Mod && self.check_path_sep_and_look_ahead(is_args_start)
309            {
310                // We use `style == PathStyle::Expr` to check if this is in a recursion or not. If
311                // it isn't, then we reset the unmatched angle bracket count as we're about to start
312                // parsing a new path.
313                if style == PathStyle::Expr {
314                    self.unmatched_angle_bracket_count = 0;
315                }
316
317                // Generic arguments are found - `<`, `(`, `::<` or `::(`.
318                // First, eat `::` if it exists.
319                let _ = self.eat_path_sep();
320
321                let lo = self.token.span;
322                let args = if self.eat_lt() {
323                    // `<'a, T, A = U>`
324                    let args = self.parse_angle_args_with_leading_angle_bracket_recovery(
325                        style,
326                        lo,
327                        ty_generics,
328                    )?;
329                    self.expect_gt().map_err(|mut err| {
330                        // Try to recover a `:` into a `::`
331                        if self.token == token::Colon
332                            && self.look_ahead(1, |token| token.is_non_reserved_ident())
333                        {
334                            err.cancel();
335                            err = self.dcx().create_err(PathSingleColon {
336                                span: self.token.span,
337                                suggestion: self.prev_token.span.shrink_to_hi(),
338                            });
339                        }
340                        // Attempt to find places where a missing `>` might belong.
341                        else if let Some(arg) = args
342                            .iter()
343                            .rev()
344                            .find(|arg| !#[allow(non_exhaustive_omitted_patterns)] match arg {
    AngleBracketedArg::Constraint(_) => true,
    _ => false,
}matches!(arg, AngleBracketedArg::Constraint(_)))
345                        {
346                            err.span_suggestion_verbose(
347                                arg.span().shrink_to_hi(),
348                                "you might have meant to end the type parameters here",
349                                ">",
350                                Applicability::MaybeIncorrect,
351                            );
352                        }
353                        err
354                    })?;
355                    let span = lo.to(self.prev_token.span);
356                    AngleBracketedArgs { args, span }.into()
357                } else if self.token == token::OpenParen
358                    // FIXME(return_type_notation): Could also recover `...` here.
359                    && self.look_ahead(1, |t| *t == token::DotDot)
360                {
361                    self.bump(); // (
362                    self.bump(); // ..
363                    self.expect(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::CloseParen,
    token_type: crate::parser::token_type::TokenType::CloseParen,
}exp!(CloseParen))?;
364                    let span = lo.to(self.prev_token.span);
365
366                    self.psess.gated_spans.gate(sym::return_type_notation, span);
367
368                    let prev_lo = self.prev_token.span.shrink_to_hi();
369                    if self.eat_noexpect(&token::RArrow) {
370                        let lo = self.prev_token.span;
371                        let ty = self.parse_ty()?;
372                        let span = lo.to(ty.span);
373                        let suggestion = prev_lo.to(ty.span);
374                        self.dcx().emit_err(diagnostics::BadReturnTypeNotationOutput {
375                            span,
376                            suggestion,
377                        });
378                    }
379
380                    Box::new(ast::GenericArgs::ParenthesizedElided(span))
381                } else {
382                    // `(T, U) -> R`
383
384                    let prev_token_before_parsing = self.prev_token;
385                    let token_before_parsing = self.token;
386                    let mut snapshot = None;
387                    if self.may_recover()
388                        && prev_token_before_parsing == token::PathSep
389                        && (style == PathStyle::Expr && self.token.can_begin_expr()
390                            || style == PathStyle::Pat
391                                && self.token.can_begin_pattern(token::NtPatKind::PatParam {
392                                    inferred: false,
393                                }))
394                    {
395                        snapshot = Some(self.create_snapshot_for_diagnostic());
396                    }
397
398                    let dcx = self.dcx();
399                    let mut first_param = true;
400                    let parse_params_result = self.parse_paren_comma_seq(|p| {
401                        // Inside parenthesized type arguments, we want types only, not names.
402                        let mode = FnParseMode {
403                            context: FnContext::ParenthesizedArgumentList,
404                            req_name: |_, _| false,
405                            req_body: false,
406                        };
407                        let param = p.parse_param_general(&mode, first_param)?;
408                        first_param = false;
409                        if !#[allow(non_exhaustive_omitted_patterns)] match param.pat.kind {
    PatKind::Missing => true,
    _ => false,
}matches!(param.pat.kind, PatKind::Missing) {
410                            self.psess
411                                .gated_spans
412                                .gate(sym::named_fn_trait_parameters, param.pat.span);
413                        }
414                        if #[allow(non_exhaustive_omitted_patterns)] match param.ty.kind {
    TyKind::CVarArgs => true,
    _ => false,
}matches!(param.ty.kind, TyKind::CVarArgs) {
415                            dcx.emit_err(PathFoundCVariadicParams { span: param.pat.span });
416                        }
417                        if !param.attrs.is_empty() {
418                            dcx.emit_err(PathFoundAttributeInParams { span: param.attrs[0].span });
419                        }
420                        Ok(param)
421                    });
422
423                    let (inputs, _) = match parse_params_result {
424                        Ok(output) => output,
425                        Err(mut error) if prev_token_before_parsing == token::PathSep => {
426                            error.span_label(
427                                prev_token_before_parsing.span.to(token_before_parsing.span),
428                                "while parsing this parenthesized list of type arguments starting here",
429                            );
430
431                            if let Some(mut snapshot) = snapshot {
432                                snapshot.recover_fn_call_leading_path_sep(
433                                    style,
434                                    prev_token_before_parsing,
435                                    &mut error,
436                                )
437                            }
438
439                            return Err(error);
440                        }
441                        Err(error) => return Err(error),
442                    };
443                    let inputs_span = lo.to(self.prev_token.span);
444                    let output =
445                        self.parse_ret_ty(AllowPlus::No, RecoverQPath::No, RecoverReturnSign::No)?;
446                    let span = ident.span.to(self.prev_token.span);
447                    ParenthesizedArgs { span, inputs, inputs_span, output }.into()
448                };
449
450                PathSegment { ident, args: Some(args), id: ast::DUMMY_NODE_ID }
451            } else {
452                // Generic arguments are not found.
453                PathSegment::from_ident(ident)
454            },
455        )
456    }
457
458    pub(super) fn parse_path_segment_ident(&mut self) -> PResult<'a, Ident> {
459        if let Some(ident) = self.token.non_raw_ident()
460            && ident.is_path_segment_keyword()
461        {
462            self.bump();
463            Ok(ident)
464        } else {
465            self.parse_ident()
466        }
467    }
468
469    /// Recover `$path::(...)` as `$path(...)`.
470    ///
471    /// ```ignore (diagnostics)
472    /// foo::(420, "bar")
473    ///    ^^ remove extra separator to make the function call
474    /// // or
475    /// match x {
476    ///    Foo::(420, "bar") => { ... },
477    ///       ^^ remove extra separator to turn this into tuple struct pattern
478    ///    _ => { ... },
479    /// }
480    /// ```
481    fn recover_fn_call_leading_path_sep(
482        &mut self,
483        style: PathStyle,
484        prev_token_before_parsing: Token,
485        error: &mut Diag<'_>,
486    ) {
487        match style {
488            PathStyle::Expr
489                if let Ok(_) = self
490                    .parse_paren_comma_seq(|p| p.parse_expr())
491                    .map_err(|error| error.cancel()) => {}
492            PathStyle::Pat
493                if let Ok(_) = self
494                    .parse_paren_comma_seq(|p| {
495                        p.parse_pat_allow_top_guard(
496                            None,
497                            RecoverComma::No,
498                            RecoverColon::No,
499                            CommaRecoveryMode::LikelyTuple,
500                        )
501                    })
502                    .map_err(|error| error.cancel()) => {}
503            _ => {
504                return;
505            }
506        }
507
508        if let token::PathSep | token::RArrow = self.token.kind {
509            return;
510        }
511
512        error.span_suggestion_verbose(
513            prev_token_before_parsing.span,
514            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("consider removing the `::` here to {0}",
                match style {
                    PathStyle::Expr => "call the expression",
                    PathStyle::Pat => "turn this into a tuple struct pattern",
                    _ => { return; }
                }))
    })format!(
515                "consider removing the `::` here to {}",
516                match style {
517                    PathStyle::Expr => "call the expression",
518                    PathStyle::Pat => "turn this into a tuple struct pattern",
519                    _ => {
520                        return;
521                    }
522                }
523            ),
524            "",
525            Applicability::MaybeIncorrect,
526        );
527    }
528
529    /// Parses generic args (within a path segment) with recovery for extra leading angle brackets.
530    /// For the purposes of understanding the parsing logic of generic arguments, this function
531    /// can be thought of being the same as just calling `self.parse_angle_args()` if the source
532    /// had the correct amount of leading angle brackets.
533    ///
534    /// ```ignore (diagnostics)
535    /// bar::<<<<T as Foo>::Output>();
536    ///      ^^ help: remove extra angle brackets
537    /// ```
538    fn parse_angle_args_with_leading_angle_bracket_recovery(
539        &mut self,
540        style: PathStyle,
541        lo: Span,
542        ty_generics: Option<&Generics>,
543    ) -> PResult<'a, ThinVec<AngleBracketedArg>> {
544        // We need to detect whether there are extra leading left angle brackets and produce an
545        // appropriate error and suggestion. This cannot be implemented by looking ahead at
546        // upcoming tokens for a matching `>` character - if there are unmatched `<` tokens
547        // then there won't be matching `>` tokens to find.
548        //
549        // To explain how this detection works, consider the following example:
550        //
551        // ```ignore (diagnostics)
552        // bar::<<<<T as Foo>::Output>();
553        //      ^^ help: remove extra angle brackets
554        // ```
555        //
556        // Parsing of the left angle brackets starts in this function. We start by parsing the
557        // `<` token (incrementing the counter of unmatched angle brackets on `Parser` via
558        // `eat_lt`):
559        //
560        // *Upcoming tokens:* `<<<<T as Foo>::Output>;`
561        // *Unmatched count:* 1
562        // *`parse_path_segment` calls deep:* 0
563        //
564        // This has the effect of recursing as this function is called if a `<` character
565        // is found within the expected generic arguments:
566        //
567        // *Upcoming tokens:* `<<<T as Foo>::Output>;`
568        // *Unmatched count:* 2
569        // *`parse_path_segment` calls deep:* 1
570        //
571        // Eventually we will have recursed until having consumed all of the `<` tokens and
572        // this will be reflected in the count:
573        //
574        // *Upcoming tokens:* `T as Foo>::Output>;`
575        // *Unmatched count:* 4
576        // `parse_path_segment` calls deep:* 3
577        //
578        // The parser will continue until reaching the first `>` - this will decrement the
579        // unmatched angle bracket count and return to the parent invocation of this function
580        // having succeeded in parsing:
581        //
582        // *Upcoming tokens:* `::Output>;`
583        // *Unmatched count:* 3
584        // *`parse_path_segment` calls deep:* 2
585        //
586        // This will continue until the next `>` character which will also return successfully
587        // to the parent invocation of this function and decrement the count:
588        //
589        // *Upcoming tokens:* `;`
590        // *Unmatched count:* 2
591        // *`parse_path_segment` calls deep:* 1
592        //
593        // At this point, this function will expect to find another matching `>` character but
594        // won't be able to and will return an error. This will continue all the way up the
595        // call stack until the first invocation:
596        //
597        // *Upcoming tokens:* `;`
598        // *Unmatched count:* 2
599        // *`parse_path_segment` calls deep:* 0
600        //
601        // In doing this, we have managed to work out how many unmatched leading left angle
602        // brackets there are, but we cannot recover as the unmatched angle brackets have
603        // already been consumed. To remedy this, we keep a snapshot of the parser state
604        // before we do the above. We can then inspect whether we ended up with a parsing error
605        // and unmatched left angle brackets and if so, restore the parser state before we
606        // consumed any `<` characters to emit an error and consume the erroneous tokens to
607        // recover by attempting to parse again.
608        //
609        // In practice, the recursion of this function is indirect and there will be other
610        // locations that consume some `<` characters - as long as we update the count when
611        // this happens, it isn't an issue.
612
613        let is_first_invocation = style == PathStyle::Expr;
614        // Take a snapshot before attempting to parse - we can restore this later.
615        let snapshot = is_first_invocation.then(|| self.clone());
616
617        self.angle_bracket_nesting += 1;
618        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs:618",
                        "rustc_parse::parser::path", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs"),
                        ::tracing_core::__macro_support::Option::Some(618u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_parse::parser::path"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("parse_generic_args_with_leading_angle_bracket_recovery: (snapshotting)")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("parse_generic_args_with_leading_angle_bracket_recovery: (snapshotting)");
619        match self.parse_angle_args(ty_generics) {
620            Ok(args) => {
621                self.angle_bracket_nesting -= 1;
622                Ok(args)
623            }
624            Err(e) if self.angle_bracket_nesting > 10 => {
625                self.angle_bracket_nesting -= 1;
626                // When encountering severely malformed code where there are several levels of
627                // nested unclosed angle args (`f::<f::<f::<f::<...`), we avoid severe O(n^2)
628                // behavior by bailing out earlier (#117080).
629                e.emit_err().raise_fatal();
630            }
631            Err(e) if is_first_invocation && self.unmatched_angle_bracket_count > 0 => {
632                self.angle_bracket_nesting -= 1;
633
634                // Swap `self` with our backup of the parser state before attempting to parse
635                // generic arguments.
636                let snapshot = mem::replace(self, snapshot.unwrap());
637
638                // Eat the unmatched angle brackets.
639                let all_angle_brackets = (0..snapshot.unmatched_angle_bracket_count)
640                    .fold(true, |a, _| a && self.eat_lt());
641
642                if !all_angle_brackets {
643                    // If there are other tokens in between the extraneous `<`s, we cannot simply
644                    // suggest to remove them. This check also prevents us from accidentally ending
645                    // up in the middle of a multibyte character (issue #84104).
646                    let _ = mem::replace(self, snapshot);
647                    Err(e)
648                } else {
649                    // Cancel error from being unable to find `>`. We know the error
650                    // must have been this due to a non-zero unmatched angle bracket
651                    // count.
652                    e.cancel();
653
654                    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs:654",
                        "rustc_parse::parser::path", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs"),
                        ::tracing_core::__macro_support::Option::Some(654u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_parse::parser::path"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("parse_generic_args_with_leading_angle_bracket_recovery: (snapshot failure) snapshot.count={0:?}",
                                                    snapshot.unmatched_angle_bracket_count) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
655                        "parse_generic_args_with_leading_angle_bracket_recovery: (snapshot failure) \
656                         snapshot.count={:?}",
657                        snapshot.unmatched_angle_bracket_count,
658                    );
659
660                    // Make a span over ${unmatched angle bracket count} characters.
661                    // This is safe because `all_angle_brackets` ensures that there are only `<`s,
662                    // i.e. no multibyte characters, in this range.
663                    let span = lo
664                        .with_hi(lo.lo() + BytePos(snapshot.unmatched_angle_bracket_count.into()));
665                    self.dcx().emit_err(diagnostics::UnmatchedAngle {
666                        span,
667                        plural: snapshot.unmatched_angle_bracket_count > 1,
668                    });
669
670                    // Try again without unmatched angle bracket characters.
671                    self.parse_angle_args(ty_generics)
672                }
673            }
674            Err(e) => {
675                self.angle_bracket_nesting -= 1;
676                Err(e)
677            }
678        }
679    }
680
681    /// Parses (possibly empty) list of generic arguments / associated item constraints,
682    /// possibly including trailing comma.
683    pub(super) fn parse_angle_args(
684        &mut self,
685        ty_generics: Option<&Generics>,
686    ) -> PResult<'a, ThinVec<AngleBracketedArg>> {
687        let mut args = ThinVec::new();
688        while let Some(arg) = self.parse_angle_arg(ty_generics)? {
689            args.push(arg);
690            if !self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Comma,
    token_type: crate::parser::token_type::TokenType::Comma,
}exp!(Comma)) {
691                if self.check_noexpect(&TokenKind::Semi)
692                    && self.look_ahead(1, |t| t.is_ident() || t.is_lifetime())
693                {
694                    // Add `>` to the list of expected tokens.
695                    self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Gt,
    token_type: crate::parser::token_type::TokenType::Gt,
}exp!(Gt));
696                    // Handle `,` to `;` substitution
697                    let mut err = self.unexpected().unwrap_err();
698                    self.bump();
699                    err.span_suggestion_verbose(
700                        self.prev_token.span.until(self.token.span),
701                        "use a comma to separate type parameters",
702                        ", ",
703                        Applicability::MachineApplicable,
704                    );
705                    err.emit();
706                    continue;
707                }
708                if !self.token.kind.should_end_const_arg()
709                    && self.handle_ambiguous_unbraced_const_arg(&mut args)?
710                {
711                    // We've managed to (partially) recover, so continue trying to parse
712                    // arguments.
713                    continue;
714                }
715                break;
716            }
717        }
718        Ok(args)
719    }
720
721    /// Parses a single argument in the angle arguments `<...>` of a path segment.
722    fn parse_angle_arg(
723        &mut self,
724        ty_generics: Option<&Generics>,
725    ) -> PResult<'a, Option<AngleBracketedArg>> {
726        let lo = self.token.span;
727        let arg = self.parse_generic_arg(ty_generics)?;
728        match arg {
729            Some(arg) => {
730                // we are using noexpect here because we first want to find out if either `=` or `:`
731                // is present and then use that info to push the other token onto the tokens list
732                let separated =
733                    self.check_noexpect(&token::Colon) || self.check_noexpect(&token::Eq);
734                if separated && (self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Colon,
    token_type: crate::parser::token_type::TokenType::Colon,
}exp!(Colon)) | self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Eq,
    token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq))) {
735                    let arg_span = arg.span();
736                    let (binder, ident, gen_args) = match self.get_ident_from_generic_arg(&arg) {
737                        Ok(ident_gen_args) => ident_gen_args,
738                        Err(()) => return Ok(Some(AngleBracketedArg::Arg(arg))),
739                    };
740                    if binder {
741                        // FIXME(compiler-errors): this could be improved by suggesting lifting
742                        // this up to the trait, at least before this becomes real syntax.
743                        // e.g. `Trait<for<'a> Assoc = Ty>` -> `for<'a> Trait<Assoc = Ty>`
744                        return Err(self.dcx().struct_span_err(
745                            arg_span,
746                            "`for<...>` is not allowed on associated type bounds",
747                        ));
748                    }
749                    let kind = if self.eat(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Colon,
    token_type: crate::parser::token_type::TokenType::Colon,
}exp!(Colon)) {
750                        AssocItemConstraintKind::Bound { bounds: self.parse_generic_bounds()? }
751                    } else if self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Eq,
    token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq)) {
752                        self.parse_assoc_equality_term(ident, gen_args.as_ref())?
753                    } else {
754                        ::core::panicking::panic("internal error: entered unreachable code");unreachable!();
755                    };
756
757                    let span = lo.to(self.prev_token.span);
758                    let constraint =
759                        AssocItemConstraint { id: ast::DUMMY_NODE_ID, ident, gen_args, kind, span };
760                    Ok(Some(AngleBracketedArg::Constraint(constraint)))
761                } else {
762                    // we only want to suggest `:` and `=` in contexts where the previous token
763                    // is an ident and the current token or the next token is an ident
764                    if self.prev_token.is_ident()
765                        && (self.token.is_ident() || self.look_ahead(1, |token| token.is_ident()))
766                    {
767                        self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Colon,
    token_type: crate::parser::token_type::TokenType::Colon,
}exp!(Colon));
768                        self.check(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Eq,
    token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq));
769                    }
770                    Ok(Some(AngleBracketedArg::Arg(arg)))
771                }
772            }
773            _ => Ok(None),
774        }
775    }
776
777    /// Parse the term to the right of an associated item equality constraint.
778    ///
779    /// That is, parse `$term` in `Item = $term` where `$term` is a type or
780    /// a const expression (wrapped in curly braces if complex).
781    fn parse_assoc_equality_term(
782        &mut self,
783        ident: Ident,
784        gen_args: Option<&GenericArgs>,
785    ) -> PResult<'a, AssocItemConstraintKind> {
786        let prev_token_span = self.prev_token.span;
787        let eq_span = self.token.span;
788        self.expect(crate::parser::token_type::ExpTokenPair {
    tok: rustc_ast::token::Eq,
    token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq))?;
789        let arg = self.parse_generic_arg(None)?;
790        let span = ident.span.to(self.prev_token.span);
791        let term = match arg {
792            Some(GenericArg::Type(ty)) => ty.into(),
793            Some(GenericArg::Const(c)) => {
794                self.psess.gated_spans.gate(sym::associated_const_equality, span);
795                c.into()
796            }
797            Some(GenericArg::Lifetime(lt)) => {
798                let guar = self.dcx().emit_err(diagnostics::LifetimeInEqConstraint {
799                    span: lt.ident.span,
800                    lifetime: lt.ident,
801                    binding_label: span,
802                    colon_sugg: gen_args
803                        .map_or(ident.span, |args| args.span())
804                        .between(lt.ident.span),
805                });
806                self.mk_ty(lt.ident.span, ast::TyKind::Err(guar)).into()
807            }
808            None => {
809                let after_eq = eq_span.shrink_to_hi();
810                let before_next = self.token.span.shrink_to_lo();
811                let mut err = self
812                    .dcx()
813                    .struct_span_err(after_eq.to(before_next), "missing type to the right of `=`");
814                if #[allow(non_exhaustive_omitted_patterns)] match self.token.kind {
    token::Comma | token::Gt => true,
    _ => false,
}matches!(self.token.kind, token::Comma | token::Gt) {
815                    err.span_suggestion_verbose(
816                        self.psess.source_map().next_point(eq_span).to(before_next),
817                        "to constrain the associated type, add a type after `=`",
818                        " TheType",
819                        Applicability::HasPlaceholders,
820                    );
821                    err.span_suggestion_verbose(
822                        prev_token_span.shrink_to_hi().to(before_next),
823                        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("remove the `=` if `{0}` is a type",
                ident))
    })format!("remove the `=` if `{ident}` is a type"),
824                        "",
825                        Applicability::MaybeIncorrect,
826                    )
827                } else {
828                    err.span_label(
829                        self.token.span,
830                        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("expected type, found {0}",
                super::token_descr(&self.token)))
    })format!("expected type, found {}", super::token_descr(&self.token)),
831                    )
832                };
833                return Err(err);
834            }
835        };
836        Ok(AssocItemConstraintKind::Equality { term })
837    }
838
839    /// We do not permit arbitrary expressions as const arguments. They must be one of:
840    /// - An expression surrounded in `{}`.
841    /// - A literal.
842    /// - A numeric literal prefixed by `-`.
843    /// - A single-segment path.
844    /// - A const block (under mGCA)
845    pub(super) fn expr_is_valid_const_arg(&self, expr: &Box<rustc_ast::Expr>) -> bool {
846        match &expr.kind {
847            ast::ExprKind::Block(_, _)
848            | ast::ExprKind::Lit(_)
849            | ast::ExprKind::IncludedBytes(..) => true,
850            ast::ExprKind::Unary(ast::UnOp::Neg, expr) => {
851                #[allow(non_exhaustive_omitted_patterns)] match expr.kind {
    ast::ExprKind::Lit(_) => true,
    _ => false,
}matches!(expr.kind, ast::ExprKind::Lit(_))
852            }
853            // We can only resolve single-segment paths at the moment, because multi-segment paths
854            // require type-checking: see `visit_generic_arg` in `src/librustc_resolve/late.rs`.
855            ast::ExprKind::Path(None, path)
856                if let [segment] = path.segments.as_slice()
857                    && segment.args.is_none() =>
858            {
859                true
860            }
861            ast::ExprKind::ConstBlock(_) => {
862                self.psess.gated_spans.gate(sym::min_generic_const_args, expr.span);
863                true
864            }
865            _ => false,
866        }
867    }
868
869    /// Parse a const argument, e.g. `<3>`. It is assumed the angle brackets will be parsed by
870    /// the caller.
871    pub(super) fn parse_const_arg(&mut self) -> PResult<'a, AnonConst> {
872        // Parse const argument.
873        let value = if self.token.kind == token::OpenBrace {
874            self.parse_expr_block(None, self.token.span, BlockCheckMode::Default)?
875        } else {
876            self.parse_unambiguous_unbraced_const_arg()?
877        };
878        Ok(AnonConst { id: ast::DUMMY_NODE_ID, value })
879    }
880
881    /// Attempt to parse a const argument that has not been enclosed in braces.
882    /// There are a limited number of expressions that are permitted without being
883    /// enclosed in braces:
884    /// - Literals.
885    /// - Single-segment paths (i.e. standalone generic const parameters).
886    /// All other expressions that can be parsed will emit an error suggesting the expression be
887    /// wrapped in braces.
888    pub(super) fn parse_unambiguous_unbraced_const_arg(&mut self) -> PResult<'a, Box<Expr>> {
889        let start = self.token.span;
890        let expr = self.parse_expr_res(Restrictions::CONST_EXPR).map_err(|mut err| {
891            err.span_label(
892                start.shrink_to_lo(),
893                "while parsing a const generic argument starting here",
894            );
895            err
896        })?;
897        if !self.expr_is_valid_const_arg(&expr) {
898            return Err(self.dcx().create_err(ConstGenericWithoutBraces {
899                span: expr.span,
900                sugg: ConstGenericWithoutBracesSugg {
901                    left: expr.span.shrink_to_lo(),
902                    right: expr.span.shrink_to_hi(),
903                },
904            }));
905        }
906
907        Ok(expr)
908    }
909
910    /// Parse a generic argument in a path segment.
911    /// This does not include constraints, e.g., `Item = u8`, which is handled in `parse_angle_arg`.
912    pub(super) fn parse_generic_arg(
913        &mut self,
914        ty_generics: Option<&Generics>,
915    ) -> PResult<'a, Option<GenericArg>> {
916        self.recover_from_outer_attributes("generic arguments")?;
917
918        let start = self.token.span;
919        let arg = if self.check_lifetime() && self.look_ahead(1, |t| !t.is_like_plus()) {
920            // Parse lifetime argument.
921            GenericArg::Lifetime(self.expect_lifetime())
922        } else if self.check_const_arg() {
923            // Parse const argument.
924            GenericArg::Const(self.parse_const_arg()?)
925        } else if self.check_type() {
926            // Parse type argument.
927
928            // Proactively create a parser snapshot enabling us to rewind and try to reparse the
929            // input as a const expression in case we fail to parse a type. If we successfully
930            // do so, we will report an error that it needs to be wrapped in braces.
931            let mut snapshot = None;
932            if self.may_recover() && self.token.can_begin_expr() {
933                snapshot = Some(self.create_snapshot_for_diagnostic());
934            }
935
936            match self.parse_ty() {
937                Ok(ty) => GenericArg::Type(ty),
938                Err(err) => {
939                    if let Some(snapshot) = snapshot
940                        && let Some(expr) =
941                            self.recover_unbraced_const_arg_that_can_begin_ty(snapshot)
942                    {
943                        return Ok(Some(self.dummy_const_arg_needs_braces(err, expr.span)));
944                    }
945                    // Try to recover from possible `const` arg without braces.
946                    return self.recover_const_arg(start, err).map(Some);
947                }
948            }
949        } else if self.token.is_keyword(kw::Const) {
950            return self.recover_const_param_declaration(ty_generics);
951        } else {
952            // Fall back by trying to parse a const-expr expression. If we successfully do so,
953            // then we should report an error that it needs to be wrapped in braces.
954            let snapshot = self.create_snapshot_for_diagnostic();
955            match self.parse_expr_res(Restrictions::CONST_EXPR) {
956                Ok(expr) => {
957                    return Ok(Some(self.dummy_const_arg_needs_braces(
958                        self.dcx().struct_span_err(expr.span, "invalid const generic expression"),
959                        expr.span,
960                    )));
961                }
962                Err(err) => {
963                    self.restore_snapshot(snapshot);
964                    err.cancel();
965                    return Ok(None);
966                }
967            }
968        };
969
970        Ok(Some(arg))
971    }
972
973    /// Given a arg inside of generics, we try to destructure it as if it were the LHS in
974    /// `LHS = ...`, i.e. an associated item binding.
975    /// This returns a bool indicating if there are any `for<'a, 'b>` binder args, the
976    /// identifier, and any GAT arguments.
977    fn get_ident_from_generic_arg(
978        &self,
979        gen_arg: &GenericArg,
980    ) -> Result<(bool, Ident, Option<GenericArgs>), ()> {
981        if let GenericArg::Type(ty) = gen_arg {
982            if let ast::TyKind::Path(qself, path) = &ty.kind
983                && qself.is_none()
984                && let [seg] = path.segments.as_slice()
985            {
986                return Ok((false, seg.ident, seg.args.as_deref().cloned()));
987            } else if let ast::TyKind::TraitObject(bounds, ast::TraitObjectSyntax::None) = &ty.kind
988                && let [ast::GenericBound::Trait(trait_ref)] = bounds.as_slice()
989                && trait_ref.modifiers == ast::TraitBoundModifiers::NONE
990                && let [seg] = trait_ref.trait_ref.path.segments.as_slice()
991            {
992                return Ok((true, seg.ident, seg.args.as_deref().cloned()));
993            }
994        }
995        Err(())
996    }
997}