Skip to main content

rustc_ast_lowering/
diagnostics.rs

1use rustc_errors::codes::*;
2use rustc_errors::{DiagArgFromDisplay, DiagArgValue, DiagSymbolList, IntoDiagArg};
3use rustc_macros::{Diagnostic, Subdiagnostic};
4use rustc_span::{Ident, Span, Symbol};
5
6#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            GenericTypeWithParentheses {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    GenericTypeWithParentheses {
                        span: __binding_0, sub: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("parenthesized type parameters may only be used with a `Fn` trait")));
                        diag.code(E0214);
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("only `Fn` traits may use parentheses")));
                        if let Some(__binding_1) = __binding_1 {
                            diag.subdiagnostic(__binding_1);
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
7#[diag("parenthesized type parameters may only be used with a `Fn` trait", code = E0214)]
8pub(crate) struct GenericTypeWithParentheses {
9    #[primary_span]
10    #[label("only `Fn` traits may use parentheses")]
11    pub span: Span,
12    #[subdiagnostic]
13    pub sub: Option<UseAngleBrackets>,
14}
15
16#[derive(const _: () =
    {
        impl rustc_errors::Subdiagnostic for UseAngleBrackets {
            fn add_to_diag<__G>(self,
                diag: &mut rustc_errors::Diag<'_, __G>) {
                match self {
                    UseAngleBrackets {
                        open_param: __binding_0, close_param: __binding_1 } => {
                        let mut suggestions = Vec::new();
                        let __code_0 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("<"))
                                });
                        let __code_1 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!(">"))
                                });
                        suggestions.push((__binding_0, __code_0));
                        suggestions.push((__binding_1, __code_1));
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use angle brackets instead")),
                                &sub_args);
                        diag.multipart_suggestion_with_style(__message, suggestions,
                            rustc_errors::Applicability::MaybeIncorrect,
                            rustc_errors::SuggestionStyle::ShowCode);
                    }
                }
            }
        }
    };Subdiagnostic)]
17#[multipart_suggestion("use angle brackets instead", applicability = "maybe-incorrect")]
18pub(crate) struct UseAngleBrackets {
19    #[suggestion_part(code = "<")]
20    pub open_param: Span,
21    #[suggestion_part(code = ">")]
22    pub close_param: Span,
23}
24
25#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for InvalidAbi {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidAbi {
                        span: __binding_0,
                        abi: __binding_1,
                        command: __binding_2,
                        suggestion: __binding_3 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid ABI: found `{$abi}`")));
                        diag.code(E0703);
                        diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invoke `{$command}` for a full list of supported calling conventions")));
                        ;
                        diag.arg("abi", __binding_1);
                        diag.arg("command", __binding_2);
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid ABI")));
                        if let Some(__binding_3) = __binding_3 {
                            diag.subdiagnostic(__binding_3);
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
26#[diag("invalid ABI: found `{$abi}`", code = E0703)]
27#[note("invoke `{$command}` for a full list of supported calling conventions")]
28pub(crate) struct InvalidAbi {
29    #[primary_span]
30    #[label("invalid ABI")]
31    pub span: Span,
32    pub abi: Symbol,
33    pub command: String,
34    #[subdiagnostic]
35    pub suggestion: Option<InvalidAbiSuggestion>,
36}
37
38#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            TupleStructWithDefault {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    TupleStructWithDefault { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("default fields are not supported in tuple structs")));
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("default fields are only supported on structs")));
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
39#[diag("default fields are not supported in tuple structs")]
40pub(crate) struct TupleStructWithDefault {
41    #[primary_span]
42    #[label("default fields are only supported on structs")]
43    pub span: Span,
44}
45
46#[derive(const _: () =
    {
        impl rustc_errors::Subdiagnostic for InvalidAbiSuggestion {
            fn add_to_diag<__G>(self,
                diag: &mut rustc_errors::Diag<'_, __G>) {
                match self {
                    InvalidAbiSuggestion {
                        span: __binding_0, suggestion: __binding_1 } => {
                        let __code_2 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!("\"{0}\"", __binding_1))
                                            })].into_iter();
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        sub_args.insert("suggestion".into(),
                            rustc_errors::IntoDiagArg::into_diag_arg(__binding_1,
                                &mut diag.long_ty_path));
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("there's a similarly named valid ABI `{$suggestion}`")),
                                &sub_args);
                        diag.span_suggestions_with_style(__binding_0, __message,
                            __code_2, rustc_errors::Applicability::MaybeIncorrect,
                            rustc_errors::SuggestionStyle::ShowAlways);
                    }
                }
            }
        }
    };Subdiagnostic)]
47#[suggestion(
48    "there's a similarly named valid ABI `{$suggestion}`",
49    code = "\"{suggestion}\"",
50    applicability = "maybe-incorrect",
51    style = "verbose"
52)]
53pub(crate) struct InvalidAbiSuggestion {
54    #[primary_span]
55    pub span: Span,
56    pub suggestion: String,
57}
58
59#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AssocTyParentheses {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AssocTyParentheses { span: __binding_0, sub: __binding_1 }
                        => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("parenthesized generic arguments cannot be used in associated type constraints")));
                        ;
                        diag.span(__binding_0);
                        diag.subdiagnostic(__binding_1);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
60#[diag("parenthesized generic arguments cannot be used in associated type constraints")]
61pub(crate) struct AssocTyParentheses {
62    #[primary_span]
63    pub span: Span,
64    #[subdiagnostic]
65    pub sub: AssocTyParenthesesSub,
66}
67
68#[derive(const _: () =
    {
        impl rustc_errors::Subdiagnostic for AssocTyParenthesesSub {
            fn add_to_diag<__G>(self,
                diag: &mut rustc_errors::Diag<'_, __G>) {
                match self {
                    AssocTyParenthesesSub::Empty { parentheses_span: __binding_0
                        } => {
                        let mut suggestions = Vec::new();
                        let __code_3 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!(""))
                                });
                        suggestions.push((__binding_0, __code_3));
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("remove these parentheses")),
                                &sub_args);
                        diag.multipart_suggestion_with_style(__message, suggestions,
                            rustc_errors::Applicability::Unspecified,
                            rustc_errors::SuggestionStyle::ShowCode);
                    }
                    AssocTyParenthesesSub::NotEmpty {
                        open_param: __binding_0, close_param: __binding_1 } => {
                        let mut suggestions = Vec::new();
                        let __code_4 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("<"))
                                });
                        let __code_5 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!(">"))
                                });
                        suggestions.push((__binding_0, __code_4));
                        suggestions.push((__binding_1, __code_5));
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use angle brackets instead")),
                                &sub_args);
                        diag.multipart_suggestion_with_style(__message, suggestions,
                            rustc_errors::Applicability::Unspecified,
                            rustc_errors::SuggestionStyle::ShowCode);
                    }
                }
            }
        }
    };Subdiagnostic)]
69pub(crate) enum AssocTyParenthesesSub {
70    #[multipart_suggestion("remove these parentheses")]
71    Empty {
72        #[suggestion_part(code = "")]
73        parentheses_span: Span,
74    },
75    #[multipart_suggestion("use angle brackets instead")]
76    NotEmpty {
77        #[suggestion_part(code = "<")]
78        open_param: Span,
79        #[suggestion_part(code = ">")]
80        close_param: Span,
81    },
82}
83
84#[derive(const _: () =
    {
        impl<'_sess, 'a, G> rustc_errors::Diagnostic<'_sess, G> for
            MisplacedImplTrait<'a> {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    MisplacedImplTrait {
                        span: __binding_0, position: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`impl Trait` is not allowed in {$position}")));
                        diag.code(E0562);
                        diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`impl Trait` is only allowed in arguments and return types of functions and methods")));
                        ;
                        diag.arg("position", __binding_1);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
85#[diag("`impl Trait` is not allowed in {$position}", code = E0562)]
86#[note("`impl Trait` is only allowed in arguments and return types of functions and methods")]
87pub(crate) struct MisplacedImplTrait<'a> {
88    #[primary_span]
89    pub span: Span,
90    pub position: DiagArgFromDisplay<'a>,
91}
92
93#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            MisplacedAssocTyBinding {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    MisplacedAssocTyBinding {
                        span: __binding_0, suggestion: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("associated type bounds are not allowed in `dyn` types")));
                        let __code_6 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!(" = impl"))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        if let Some(__binding_1) = __binding_1 {
                            diag.span_suggestions_with_style(__binding_1,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use `impl Trait` to introduce a type instead")),
                                __code_6, rustc_errors::Applicability::MaybeIncorrect,
                                rustc_errors::SuggestionStyle::ShowAlways);
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
94#[diag("associated type bounds are not allowed in `dyn` types")]
95pub(crate) struct MisplacedAssocTyBinding {
96    #[primary_span]
97    pub span: Span,
98    #[suggestion(
99        "use `impl Trait` to introduce a type instead",
100        code = " = impl",
101        applicability = "maybe-incorrect",
102        style = "verbose"
103    )]
104    pub suggestion: Option<Span>,
105}
106
107#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            UnderscoreExprLhsAssign {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    UnderscoreExprLhsAssign { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("in expressions, `_` can only be used on the left-hand side of an assignment")));
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`_` not allowed here")));
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
108#[diag("in expressions, `_` can only be used on the left-hand side of an assignment")]
109pub(crate) struct UnderscoreExprLhsAssign {
110    #[primary_span]
111    #[label("`_` not allowed here")]
112    pub span: Span,
113}
114
115#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AwaitOnlyInAsyncFnAndBlocks {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AwaitOnlyInAsyncFnAndBlocks {
                        await_kw_span: __binding_0, item_span: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`await` is only allowed inside `async` functions and blocks")));
                        diag.code(E0728);
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("only allowed inside `async` functions and blocks")));
                        if let Some(__binding_1) = __binding_1 {
                            diag.span_label(__binding_1,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("this is not `async`")));
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
116#[diag("`await` is only allowed inside `async` functions and blocks", code = E0728)]
117pub(crate) struct AwaitOnlyInAsyncFnAndBlocks {
118    #[primary_span]
119    #[label("only allowed inside `async` functions and blocks")]
120    pub await_kw_span: Span,
121    #[label("this is not `async`")]
122    pub item_span: Option<Span>,
123}
124
125#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            ConstComptimeFn {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    ConstComptimeFn { span: __binding_0, attr_span: __binding_1
                        } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("a function cannot be both `comptime` and `const`")));
                        let __code_7 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!(""))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        diag.span_suggestions_with_style(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("remove the `const`")),
                            __code_7, rustc_errors::Applicability::MachineApplicable,
                            rustc_errors::SuggestionStyle::ShowCode);
                        diag.span_note(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`const` implies the function can be called at runtime, too")));
                        diag.span_label(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`comptime` because of this")));
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
126#[diag("a function cannot be both `comptime` and `const`")]
127pub(crate) struct ConstComptimeFn {
128    #[primary_span]
129    #[suggestion("remove the `const`", applicability = "machine-applicable", code = "")]
130    #[note("`const` implies the function can be called at runtime, too")]
131    pub span: Span,
132    #[label("`comptime` because of this")]
133    pub attr_span: Span,
134}
135
136#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            CoroutineTooManyParameters {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    CoroutineTooManyParameters { fn_decl_span: __binding_0 } =>
                        {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("too many parameters for a coroutine (expected 0 or 1 parameters)")));
                        diag.code(E0628);
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
137#[diag("too many parameters for a coroutine (expected 0 or 1 parameters)", code = E0628)]
138pub(crate) struct CoroutineTooManyParameters {
139    #[primary_span]
140    pub fn_decl_span: Span,
141}
142
143#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            ClosureCannotBeStatic {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    ClosureCannotBeStatic { fn_decl_span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("closures cannot be static")));
                        diag.code(E0697);
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
144#[diag("closures cannot be static", code = E0697)]
145pub(crate) struct ClosureCannotBeStatic {
146    #[primary_span]
147    pub fn_decl_span: Span,
148}
149
150#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            MoveExprOnlyInSupportedContexts {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    MoveExprOnlyInSupportedContexts { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`move(expr)` is only supported in closures, `async`, `gen`, and `async gen` blocks")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
151#[diag("`move(expr)` is only supported in closures, `async`, `gen`, and `async gen` blocks")]
152pub(crate) struct MoveExprOnlyInSupportedContexts {
153    #[primary_span]
154    pub span: Span,
155}
156
157#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            NestedMoveExprWithoutEnclosingContext {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    NestedMoveExprWithoutEnclosingContext { span: __binding_0 }
                        => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("nested `move(expr)` requires another enclosing closure, `async`, `gen`, or `async gen` block")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
158#[diag(
159    "nested `move(expr)` requires another enclosing closure, `async`, `gen`, or `async gen` block"
160)]
161pub(crate) struct NestedMoveExprWithoutEnclosingContext {
162    #[primary_span]
163    pub span: Span,
164}
165
166#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            FunctionalRecordUpdateDestructuringAssignment {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    FunctionalRecordUpdateDestructuringAssignment {
                        span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("functional record updates are not allowed in destructuring assignments")));
                        let __code_8 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!(""))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        diag.span_suggestions_with_style(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("consider removing the trailing pattern")),
                            __code_8, rustc_errors::Applicability::MachineApplicable,
                            rustc_errors::SuggestionStyle::ShowCode);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
167#[diag("functional record updates are not allowed in destructuring assignments")]
168pub(crate) struct FunctionalRecordUpdateDestructuringAssignment {
169    #[primary_span]
170    #[suggestion(
171        "consider removing the trailing pattern",
172        code = "",
173        applicability = "machine-applicable"
174    )]
175    pub span: Span,
176}
177
178#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AsyncCoroutinesNotSupported {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AsyncCoroutinesNotSupported { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`async` coroutines are not yet supported")));
                        diag.code(E0727);
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
179#[diag("`async` coroutines are not yet supported", code = E0727)]
180pub(crate) struct AsyncCoroutinesNotSupported {
181    #[primary_span]
182    pub span: Span,
183}
184
185#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InlineAsmUnsupportedTarget {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InlineAsmUnsupportedTarget { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("inline assembly is unsupported on this target")));
                        diag.code(E0472);
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
186#[diag("inline assembly is unsupported on this target", code = E0472)]
187pub(crate) struct InlineAsmUnsupportedTarget {
188    #[primary_span]
189    pub span: Span,
190}
191
192#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AttSyntaxOnlyX86 {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AttSyntaxOnlyX86 { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the `att_syntax` option is only supported on x86")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
193#[diag("the `att_syntax` option is only supported on x86")]
194pub(crate) struct AttSyntaxOnlyX86 {
195    #[primary_span]
196    pub span: Span,
197}
198
199#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AbiSpecifiedMultipleTimes {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AbiSpecifiedMultipleTimes {
                        abi_span: __binding_0,
                        prev_name: __binding_1,
                        prev_span: __binding_2,
                        equivalent: __binding_3 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`{$prev_name}` ABI specified multiple times")));
                        ;
                        diag.arg("prev_name", __binding_1);
                        diag.span(__binding_0);
                        diag.span_label(__binding_2,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("previously specified here")));
                        if __binding_3 {
                            diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("these ABIs are equivalent on the current target")));
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
200#[diag("`{$prev_name}` ABI specified multiple times")]
201pub(crate) struct AbiSpecifiedMultipleTimes {
202    #[primary_span]
203    pub abi_span: Span,
204    pub prev_name: Symbol,
205    #[label("previously specified here")]
206    pub prev_span: Span,
207    #[note("these ABIs are equivalent on the current target")]
208    pub equivalent: bool,
209}
210
211#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            ClobberAbiNotSupported {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    ClobberAbiNotSupported { abi_span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`clobber_abi` is not supported on this target")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
212#[diag("`clobber_abi` is not supported on this target")]
213pub(crate) struct ClobberAbiNotSupported {
214    #[primary_span]
215    pub abi_span: Span,
216}
217
218#[derive(const _: () =
    {
        impl<'_sess, 'a, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidAbiClobberAbi<'a> {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidAbiClobberAbi {
                        abi_span: __binding_0, supported_abis: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid ABI for `clobber_abi`")));
                        diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the following ABIs are supported on this target: {$supported_abis}")));
                        ;
                        diag.arg("supported_abis", __binding_1);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
219#[note("the following ABIs are supported on this target: {$supported_abis}")]
220#[diag("invalid ABI for `clobber_abi`")]
221pub(crate) struct InvalidAbiClobberAbi<'a> {
222    #[primary_span]
223    pub abi_span: Span,
224    pub supported_abis: DiagSymbolList<&'a str>,
225}
226
227#[derive(const _: () =
    {
        impl<'_sess, 'a, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidRegister<'a> {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidRegister {
                        op_span: __binding_0, reg: __binding_1, error: __binding_2 }
                        => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid register `{$reg}`: {$error}")));
                        ;
                        diag.arg("reg", __binding_1);
                        diag.arg("error", __binding_2);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
228#[diag("invalid register `{$reg}`: {$error}")]
229pub(crate) struct InvalidRegister<'a> {
230    #[primary_span]
231    pub op_span: Span,
232    pub reg: Symbol,
233    pub error: &'a str,
234}
235
236#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidRegisterClass {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidRegisterClass {
                        op_span: __binding_0,
                        reg_class: __binding_1,
                        supported_register_classes: __binding_2 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid register class `{$reg_class}`: unknown register class")));
                        diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the following register classes are supported on this target: {$supported_register_classes}")));
                        ;
                        diag.arg("reg_class", __binding_1);
                        diag.arg("supported_register_classes", __binding_2);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
237#[note(
238    "the following register classes are supported on this target: {$supported_register_classes}"
239)]
240#[diag("invalid register class `{$reg_class}`: unknown register class")]
241pub(crate) struct InvalidRegisterClass {
242    #[primary_span]
243    pub op_span: Span,
244    pub reg_class: Symbol,
245    pub supported_register_classes: DiagSymbolList<Symbol>,
246}
247
248#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidAsmTemplateModifierRegClass {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidAsmTemplateModifierRegClass {
                        placeholder_span: __binding_0,
                        op_span: __binding_1,
                        modifier: __binding_2,
                        sub: __binding_3 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid asm template modifier `{$modifier}` for this register class")));
                        ;
                        diag.arg("modifier", __binding_2);
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("template modifier")));
                        diag.span_label(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("argument")));
                        diag.subdiagnostic(__binding_3);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
249#[diag("invalid asm template modifier `{$modifier}` for this register class")]
250pub(crate) struct InvalidAsmTemplateModifierRegClass {
251    #[primary_span]
252    #[label("template modifier")]
253    pub placeholder_span: Span,
254    #[label("argument")]
255    pub op_span: Span,
256    pub modifier: String,
257    #[subdiagnostic]
258    pub sub: InvalidAsmTemplateModifierRegClassSub,
259}
260
261#[derive(const _: () =
    {
        impl rustc_errors::Subdiagnostic for
            InvalidAsmTemplateModifierRegClassSub {
            fn add_to_diag<__G>(self,
                diag: &mut rustc_errors::Diag<'_, __G>) {
                match self {
                    InvalidAsmTemplateModifierRegClassSub::SupportModifier {
                        class_name: __binding_0, modifiers: __binding_1 } => {
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        sub_args.insert("class_name".into(),
                            rustc_errors::IntoDiagArg::into_diag_arg(__binding_0,
                                &mut diag.long_ty_path));
                        sub_args.insert("modifiers".into(),
                            rustc_errors::IntoDiagArg::into_diag_arg(__binding_1,
                                &mut diag.long_ty_path));
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the `{$class_name}` register class supports the following template modifiers: {$modifiers}")),
                                &sub_args);
                        diag.note(__message);
                    }
                    InvalidAsmTemplateModifierRegClassSub::DoesNotSupportModifier {
                        class_name: __binding_0 } => {
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        sub_args.insert("class_name".into(),
                            rustc_errors::IntoDiagArg::into_diag_arg(__binding_0,
                                &mut diag.long_ty_path));
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the `{$class_name}` register class does not support template modifiers")),
                                &sub_args);
                        diag.note(__message);
                    }
                }
            }
        }
    };Subdiagnostic)]
262pub(crate) enum InvalidAsmTemplateModifierRegClassSub {
263    #[note(
264        "the `{$class_name}` register class supports the following template modifiers: {$modifiers}"
265    )]
266    SupportModifier { class_name: Symbol, modifiers: DiagSymbolList<char> },
267    #[note("the `{$class_name}` register class does not support template modifiers")]
268    DoesNotSupportModifier { class_name: Symbol },
269}
270
271#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidAsmTemplateModifierConst {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidAsmTemplateModifierConst {
                        placeholder_span: __binding_0, op_span: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("asm template modifiers are not allowed for `const` arguments")));
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("template modifier")));
                        diag.span_label(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("argument")));
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
272#[diag("asm template modifiers are not allowed for `const` arguments")]
273pub(crate) struct InvalidAsmTemplateModifierConst {
274    #[primary_span]
275    #[label("template modifier")]
276    pub placeholder_span: Span,
277    #[label("argument")]
278    pub op_span: Span,
279}
280
281#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidAsmTemplateModifierSym {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidAsmTemplateModifierSym {
                        placeholder_span: __binding_0, op_span: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("asm template modifiers are not allowed for `sym` arguments")));
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("template modifier")));
                        diag.span_label(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("argument")));
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
282#[diag("asm template modifiers are not allowed for `sym` arguments")]
283pub(crate) struct InvalidAsmTemplateModifierSym {
284    #[primary_span]
285    #[label("template modifier")]
286    pub placeholder_span: Span,
287    #[label("argument")]
288    pub op_span: Span,
289}
290
291#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidAsmTemplateModifierLabel {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidAsmTemplateModifierLabel {
                        placeholder_span: __binding_0, op_span: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("asm template modifiers are not allowed for `label` arguments")));
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("template modifier")));
                        diag.span_label(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("argument")));
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
292#[diag("asm template modifiers are not allowed for `label` arguments")]
293pub(crate) struct InvalidAsmTemplateModifierLabel {
294    #[primary_span]
295    #[label("template modifier")]
296    pub placeholder_span: Span,
297    #[label("argument")]
298    pub op_span: Span,
299}
300
301#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            RegisterClassOnlyClobber {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    RegisterClassOnlyClobber {
                        op_span: __binding_0, reg_class_name: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("register class `{$reg_class_name}` can only be used as a clobber, not as an input or output")));
                        ;
                        diag.arg("reg_class_name", __binding_1);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
302#[diag(
303    "register class `{$reg_class_name}` can only be used as a clobber, not as an input or output"
304)]
305pub(crate) struct RegisterClassOnlyClobber {
306    #[primary_span]
307    pub op_span: Span,
308    pub reg_class_name: Symbol,
309}
310
311#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            RegisterClassOnlyClobberStable {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    RegisterClassOnlyClobberStable {
                        op_span: __binding_0, reg_class_name: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("register class `{$reg_class_name}` can only be used as a clobber in stable")));
                        ;
                        diag.arg("reg_class_name", __binding_1);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
312#[diag("register class `{$reg_class_name}` can only be used as a clobber in stable")]
313pub(crate) struct RegisterClassOnlyClobberStable {
314    #[primary_span]
315    pub op_span: Span,
316    pub reg_class_name: Symbol,
317}
318
319#[derive(const _: () =
    {
        impl<'_sess, 'a, G> rustc_errors::Diagnostic<'_sess, G> for
            RegisterConflict<'a> {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    RegisterConflict {
                        op_span1: __binding_0,
                        op_span2: __binding_1,
                        reg1_name: __binding_2,
                        reg2_name: __binding_3,
                        in_out: __binding_4 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("register `{$reg1_name}` conflicts with register `{$reg2_name}`")));
                        ;
                        diag.arg("reg1_name", __binding_2);
                        diag.arg("reg2_name", __binding_3);
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("register `{$reg1_name}`")));
                        diag.span_label(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("register `{$reg2_name}`")));
                        if let Some(__binding_4) = __binding_4 {
                            diag.span_help(__binding_4,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use `lateout` instead of `out` to avoid conflict")));
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
320#[diag("register `{$reg1_name}` conflicts with register `{$reg2_name}`")]
321pub(crate) struct RegisterConflict<'a> {
322    #[primary_span]
323    #[label("register `{$reg1_name}`")]
324    pub op_span1: Span,
325    #[label("register `{$reg2_name}`")]
326    pub op_span2: Span,
327    pub reg1_name: &'a str,
328    pub reg2_name: &'a str,
329    #[help("use `lateout` instead of `out` to avoid conflict")]
330    pub in_out: Option<Span>,
331}
332
333#[derive(const _: () =
    {
        impl<'_sess, 'a, G> rustc_errors::Diagnostic<'_sess, G> for
            SubTupleBinding<'a> {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    SubTupleBinding {
                        span: __binding_0,
                        ident: __binding_1,
                        ident_name: __binding_2,
                        ctx: __binding_3 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`{$ident_name} @` is not allowed in a {$ctx}")));
                        let __code_9 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!(".."))
                                            })].into_iter();
                        diag.help(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("remove this and bind each tuple field independently")));
                        ;
                        diag.arg("ident", __binding_1);
                        diag.arg("ident_name", __binding_2);
                        diag.arg("ctx", __binding_3);
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("this is only allowed in slice patterns")));
                        diag.span_suggestions_with_style(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("if you don't need to use the contents of {$ident}, discard the tuple's remaining fields")),
                            __code_9, rustc_errors::Applicability::MaybeIncorrect,
                            rustc_errors::SuggestionStyle::ShowAlways);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
334#[help("remove this and bind each tuple field independently")]
335#[diag("`{$ident_name} @` is not allowed in a {$ctx}")]
336pub(crate) struct SubTupleBinding<'a> {
337    #[primary_span]
338    #[label("this is only allowed in slice patterns")]
339    #[suggestion(
340        "if you don't need to use the contents of {$ident}, discard the tuple's remaining fields",
341        style = "verbose",
342        code = "..",
343        applicability = "maybe-incorrect"
344    )]
345    pub span: Span,
346    pub ident: Ident,
347    pub ident_name: Symbol,
348    pub ctx: &'a str,
349}
350
351#[derive(const _: () =
    {
        impl<'_sess, 'a, G> rustc_errors::Diagnostic<'_sess, G> for
            ExtraDoubleDot<'a> {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    ExtraDoubleDot {
                        span: __binding_0, prev_span: __binding_1, ctx: __binding_2
                        } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`..` can only be used once per {$ctx} pattern")));
                        ;
                        diag.arg("ctx", __binding_2);
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("can only be used once per {$ctx} pattern")));
                        diag.span_label(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("previously used here")));
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
352#[diag("`..` can only be used once per {$ctx} pattern")]
353pub(crate) struct ExtraDoubleDot<'a> {
354    #[primary_span]
355    #[label("can only be used once per {$ctx} pattern")]
356    pub span: Span,
357    #[label("previously used here")]
358    pub prev_span: Span,
359    pub ctx: &'a str,
360}
361
362#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            MisplacedDoubleDot {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    MisplacedDoubleDot { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`..` patterns are not allowed here")));
                        diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("only allowed in tuple, tuple struct, and slice patterns")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
363#[note("only allowed in tuple, tuple struct, and slice patterns")]
364#[diag("`..` patterns are not allowed here")]
365pub(crate) struct MisplacedDoubleDot {
366    #[primary_span]
367    pub span: Span,
368}
369
370#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            MatchArmWithNoBody {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    MatchArmWithNoBody {
                        span: __binding_0, suggestion: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`match` arm with no body")));
                        let __code_10 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!(" => todo!(),"))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        diag.span_suggestions_with_style(__binding_1,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("add a body after the pattern")),
                            __code_10, rustc_errors::Applicability::HasPlaceholders,
                            rustc_errors::SuggestionStyle::ShowCode);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
371#[diag("`match` arm with no body")]
372pub(crate) struct MatchArmWithNoBody {
373    #[primary_span]
374    pub span: Span,
375    #[suggestion(
376        "add a body after the pattern",
377        // ignore-tidy-todo
378        code = " => todo!(),",
379        applicability = "has-placeholders"
380    )]
381    pub suggestion: Span,
382}
383
384#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            NeverPatternWithBody {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    NeverPatternWithBody { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("a never pattern is always unreachable")));
                        let __code_11 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!(""))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        diag.span_label(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("this will never be executed")));
                        diag.span_suggestions_with_style(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("remove this expression")),
                            __code_11, rustc_errors::Applicability::MaybeIncorrect,
                            rustc_errors::SuggestionStyle::ShowCode);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
385#[diag("a never pattern is always unreachable")]
386pub(crate) struct NeverPatternWithBody {
387    #[primary_span]
388    #[label("this will never be executed")]
389    #[suggestion("remove this expression", code = "", applicability = "maybe-incorrect")]
390    pub span: Span,
391}
392
393#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            NeverPatternWithGuard {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    NeverPatternWithGuard { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("a guard on a never pattern will never be run")));
                        let __code_12 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!(""))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        diag.span_suggestions_with_style(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("remove this guard")),
                            __code_12, rustc_errors::Applicability::MaybeIncorrect,
                            rustc_errors::SuggestionStyle::ShowCode);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
394#[diag("a guard on a never pattern will never be run")]
395pub(crate) struct NeverPatternWithGuard {
396    #[primary_span]
397    #[suggestion("remove this guard", code = "", applicability = "maybe-incorrect")]
398    pub span: Span,
399}
400
401#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            ArbitraryExpressionInPattern {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    ArbitraryExpressionInPattern {
                        span: __binding_0,
                        pattern_from_macro_note: __binding_1,
                        const_block_in_pattern_help: __binding_2 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("arbitrary expressions aren't allowed in patterns")));
                        ;
                        diag.span(__binding_0);
                        if __binding_1 {
                            diag.note(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the `expr` fragment specifier forces the metavariable's content to be an expression")));
                        }
                        if __binding_2 {
                            diag.help(rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use a named `const`-item or an `if`-guard (`x if x == const {\"{ ... }\"}`) instead")));
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
402#[diag("arbitrary expressions aren't allowed in patterns")]
403pub(crate) struct ArbitraryExpressionInPattern {
404    #[primary_span]
405    pub span: Span,
406    #[note("the `expr` fragment specifier forces the metavariable's content to be an expression")]
407    pub pattern_from_macro_note: bool,
408    #[help("use a named `const`-item or an `if`-guard (`x if x == const {\"{ ... }\"}`) instead")]
409    pub const_block_in_pattern_help: bool,
410}
411
412#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InclusiveRangeWithNoEnd {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InclusiveRangeWithNoEnd { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("inclusive range with no end")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
413#[diag("inclusive range with no end")]
414pub(crate) struct InclusiveRangeWithNoEnd {
415    #[primary_span]
416    pub span: Span,
417}
418
419#[derive(const _: () =
    {
        impl rustc_errors::Subdiagnostic for RTNSuggestion {
            fn add_to_diag<__G>(self,
                diag: &mut rustc_errors::Diag<'_, __G>) {
                match self {
                    RTNSuggestion { output: __binding_0, input: __binding_1 } =>
                        {
                        let mut suggestions = Vec::new();
                        let __code_13 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!(""))
                                });
                        let __code_14 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("(..)"))
                                });
                        suggestions.push((__binding_0, __code_13));
                        suggestions.push((__binding_1, __code_14));
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use the right argument notation and remove the return type")),
                                &sub_args);
                        diag.multipart_suggestion_with_style(__message, suggestions,
                            rustc_errors::Applicability::MachineApplicable,
                            rustc_errors::SuggestionStyle::ShowAlways);
                    }
                }
            }
        }
    };Subdiagnostic)]
420#[multipart_suggestion(
421    "use the right argument notation and remove the return type",
422    applicability = "machine-applicable",
423    style = "verbose"
424)]
425/// Given `T: Tr<m() -> Ret>` or `T: Tr<m(Ty) -> Ret>`, suggest `T: Tr<m(..)>`.
426pub(crate) struct RTNSuggestion {
427    #[suggestion_part(code = "")]
428    pub output: Span,
429    #[suggestion_part(code = "(..)")]
430    pub input: Span,
431}
432
433#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            BadReturnTypeNotation {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    BadReturnTypeNotation::Inputs { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("argument types not allowed with return type notation")));
                        let __code_15 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!("(..)"))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        diag.span_suggestions_with_style(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("remove the input types")),
                            __code_15, rustc_errors::Applicability::MachineApplicable,
                            rustc_errors::SuggestionStyle::ShowAlways);
                        diag
                    }
                    BadReturnTypeNotation::Output {
                        span: __binding_0, suggestion: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("return type not allowed with return type notation")));
                        ;
                        diag.span(__binding_0);
                        diag.subdiagnostic(__binding_1);
                        diag
                    }
                    BadReturnTypeNotation::NeedsDots { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("return type notation arguments must be elided with `..`")));
                        let __code_16 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!("(..)"))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        diag.span_suggestions_with_style(__binding_0,
                            rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use the correct syntax by adding `..` to the arguments")),
                            __code_16, rustc_errors::Applicability::MachineApplicable,
                            rustc_errors::SuggestionStyle::ShowAlways);
                        diag
                    }
                    BadReturnTypeNotation::Position { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("return type notation not allowed in this position yet")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
434pub(crate) enum BadReturnTypeNotation {
435    #[diag("argument types not allowed with return type notation")]
436    Inputs {
437        #[primary_span]
438        #[suggestion(
439            "remove the input types",
440            code = "(..)",
441            applicability = "machine-applicable",
442            style = "verbose"
443        )]
444        span: Span,
445    },
446    #[diag("return type not allowed with return type notation")]
447    Output {
448        #[primary_span]
449        span: Span,
450        #[subdiagnostic]
451        suggestion: RTNSuggestion,
452    },
453    #[diag("return type notation arguments must be elided with `..`")]
454    NeedsDots {
455        #[primary_span]
456        #[suggestion(
457            "use the correct syntax by adding `..` to the arguments",
458            code = "(..)",
459            applicability = "machine-applicable",
460            style = "verbose"
461        )]
462        span: Span,
463    },
464    #[diag("return type notation not allowed in this position yet")]
465    Position {
466        #[primary_span]
467        span: Span,
468    },
469}
470
471#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            GenericParamDefaultInBinder {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    GenericParamDefaultInBinder { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("defaults for generic parameters are not allowed in `for<...>` binders")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
472#[diag("defaults for generic parameters are not allowed in `for<...>` binders")]
473pub(crate) struct GenericParamDefaultInBinder {
474    #[primary_span]
475    pub span: Span,
476}
477
478#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AsyncBoundNotOnTrait {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AsyncBoundNotOnTrait { span: __binding_0, descr: __binding_1
                        } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`async` bound modifier only allowed on trait, not `{$descr}`")));
                        ;
                        diag.arg("descr", __binding_1);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
479#[diag("`async` bound modifier only allowed on trait, not `{$descr}`")]
480pub(crate) struct AsyncBoundNotOnTrait {
481    #[primary_span]
482    pub span: Span,
483    pub descr: &'static str,
484}
485
486#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AsyncBoundOnlyForFnTraits {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AsyncBoundOnlyForFnTraits { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`async` bound modifier only allowed on `Fn`/`FnMut`/`FnOnce` traits")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
487#[diag("`async` bound modifier only allowed on `Fn`/`FnMut`/`FnOnce` traits")]
488pub(crate) struct AsyncBoundOnlyForFnTraits {
489    #[primary_span]
490    pub span: Span,
491}
492
493#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            NoPreciseCapturesOnApit {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    NoPreciseCapturesOnApit { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`use<...>` precise capturing syntax not allowed in argument-position `impl Trait`")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
494#[diag("`use<...>` precise capturing syntax not allowed in argument-position `impl Trait`")]
495pub(crate) struct NoPreciseCapturesOnApit {
496    #[primary_span]
497    pub span: Span,
498}
499
500#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for YieldInClosure
            {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    YieldInClosure { span: __binding_0, suggestion: __binding_1
                        } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("`yield` can only be used in `#[coroutine]` closures, or `gen` blocks")));
                        let __code_17 =
                            [::alloc::__export::must_use({
                                                ::alloc::fmt::format(format_args!("#[coroutine] "))
                                            })].into_iter();
                        ;
                        diag.span(__binding_0);
                        if let Some(__binding_1) = __binding_1 {
                            diag.span_suggestions_with_style(__binding_1,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("use `#[coroutine]` to make this closure a coroutine")),
                                __code_17, rustc_errors::Applicability::MaybeIncorrect,
                                rustc_errors::SuggestionStyle::ShowAlways);
                        }
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
501#[diag("`yield` can only be used in `#[coroutine]` closures, or `gen` blocks")]
502pub(crate) struct YieldInClosure {
503    #[primary_span]
504    pub span: Span,
505    #[suggestion(
506        "use `#[coroutine]` to make this closure a coroutine",
507        code = "#[coroutine] ",
508        applicability = "maybe-incorrect",
509        style = "verbose"
510    )]
511    pub suggestion: Option<Span>,
512}
513
514#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            InvalidLegacyConstGenericArg {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    InvalidLegacyConstGenericArg {
                        span: __binding_0, suggestion: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid argument to a legacy const generic: cannot have const blocks, closures, async blocks or items")));
                        ;
                        diag.span(__binding_0);
                        diag.subdiagnostic(__binding_1);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
515#[diag(
516    "invalid argument to a legacy const generic: cannot have const blocks, closures, async blocks or items"
517)]
518pub(crate) struct InvalidLegacyConstGenericArg {
519    #[primary_span]
520    pub span: Span,
521    #[subdiagnostic]
522    pub suggestion: UseConstGenericArg,
523}
524
525#[derive(const _: () =
    {
        impl rustc_errors::Subdiagnostic for UseConstGenericArg {
            fn add_to_diag<__G>(self,
                diag: &mut rustc_errors::Diag<'_, __G>) {
                match self {
                    UseConstGenericArg {
                        end_of_fn: __binding_0,
                        const_args: __binding_1,
                        other_args: __binding_2,
                        call_args: __binding_3 } => {
                        let mut suggestions = Vec::new();
                        let __code_18 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("::<{0}>", __binding_1))
                                });
                        let __code_19 =
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("{0}", __binding_2))
                                });
                        suggestions.push((__binding_0, __code_18));
                        suggestions.push((__binding_3, __code_19));
                        let mut sub_args = rustc_errors::DiagArgMap::default();
                        let __message =
                            rustc_errors::format_diag_message(&rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("try using a const generic argument instead")),
                                &sub_args);
                        diag.multipart_suggestion_with_style(__message, suggestions,
                            rustc_errors::Applicability::MaybeIncorrect,
                            rustc_errors::SuggestionStyle::ShowCode);
                    }
                }
            }
        }
    };Subdiagnostic)]
526#[multipart_suggestion(
527    "try using a const generic argument instead",
528    applicability = "maybe-incorrect"
529)]
530pub(crate) struct UseConstGenericArg {
531    #[suggestion_part(code = "::<{const_args}>")]
532    pub end_of_fn: Span,
533    pub const_args: String,
534    pub other_args: String,
535    #[suggestion_part(code = "{other_args}")]
536    pub call_args: Span,
537}
538
539#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            UnionWithDefault {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    UnionWithDefault { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("unions cannot have default field values")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
540#[diag("unions cannot have default field values")]
541pub(crate) struct UnionWithDefault {
542    #[primary_span]
543    pub span: Span,
544}
545
546#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            UnresolvedDelegationCallee {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    UnresolvedDelegationCallee { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("failed to resolve delegation callee")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
547#[diag("failed to resolve delegation callee")]
548pub(crate) struct UnresolvedDelegationCallee {
549    #[primary_span]
550    pub span: Span,
551}
552
553#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            CycleInDelegationSignatureResolution {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    CycleInDelegationSignatureResolution { span: __binding_0 }
                        => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("encountered a cycle during delegation signature resolution")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
554#[diag("encountered a cycle during delegation signature resolution")]
555pub(crate) struct CycleInDelegationSignatureResolution {
556    #[primary_span]
557    pub span: Span,
558}
559
560#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            DelegationBlockSpecifiedWhenNoParams {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    DelegationBlockSpecifiedWhenNoParams { span: __binding_0 }
                        => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("delegation's target expression is specified for function with no params")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
561#[diag("delegation's target expression is specified for function with no params")]
562pub(crate) struct DelegationBlockSpecifiedWhenNoParams {
563    #[primary_span]
564    pub span: Span,
565}
566
567#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            DelegationAttemptedBlockWithDefsDeletion {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    DelegationAttemptedBlockWithDefsDeletion { span: __binding_0
                        } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("attempted to delete delegation's target expression that contains definitions inside")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
568#[diag("attempted to delete delegation's target expression that contains definitions inside")]
569pub(crate) struct DelegationAttemptedBlockWithDefsDeletion {
570    #[primary_span]
571    pub span: Span,
572}
573
574#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            DelegationInfersMismatch {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    DelegationInfersMismatch {
                        span: __binding_0,
                        expected: __binding_1,
                        actual: __binding_2 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("wrong infer used: expected {$expected}, found: {$actual}")));
                        ;
                        diag.arg("expected", __binding_1);
                        diag.arg("actual", __binding_2);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
575#[diag("wrong infer used: expected {$expected}, found: {$actual}")]
576pub(crate) struct DelegationInfersMismatch {
577    #[primary_span]
578    pub span: Span,
579    pub expected: Symbol,
580    pub actual: Symbol,
581}
582
583#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            DelegationAttemptedBlockWithDefsRelowering {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    DelegationAttemptedBlockWithDefsRelowering {
                        span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("attempted to lower target expression with definitions more than once while mapping argument")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
584#[diag(
585    "attempted to lower target expression with definitions more than once while mapping argument"
586)]
587pub(crate) struct DelegationAttemptedBlockWithDefsRelowering {
588    #[primary_span]
589    pub span: Span,
590}
591
592/// Whether resolving `impl` or `mut` restriction paths
593#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ResolvingRestrictionKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                ResolvingRestrictionKind::Impl => "Impl",
                ResolvingRestrictionKind::Mut => "Mut",
            })
    }
}Debug, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ResolvingRestrictionKind { }
#[automatically_derived]
impl ::core::clone::Clone for ResolvingRestrictionKind {
    #[inline]
    fn clone(&self) -> ResolvingRestrictionKind { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ResolvingRestrictionKind { }Copy)]
594pub(crate) enum ResolvingRestrictionKind {
595    Impl,
596    Mut,
597}
598
599impl IntoDiagArg for ResolvingRestrictionKind {
600    fn into_diag_arg(self, _: &mut Option<std::path::PathBuf>) -> DiagArgValue {
601        use std::borrow::Cow;
602        match self {
603            ResolvingRestrictionKind::Impl => DiagArgValue::Str(Cow::Borrowed("impl")),
604            ResolvingRestrictionKind::Mut => DiagArgValue::Str(Cow::Borrowed("mut")),
605        }
606    }
607}
608
609#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            RestrictionAncestorOnly {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    RestrictionAncestorOnly {
                        span: __binding_0, kind: __binding_1 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("{$kind ->\n    [impl] trait implementation\n    *[mut] field mutation\n} can only be restricted to ancestor modules")));
                        ;
                        diag.arg("kind", __binding_1);
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
610#[diag(
611    "{$kind ->
612    [impl] trait implementation
613    *[mut] field mutation
614} can only be restricted to ancestor modules"
615)]
616pub(crate) struct RestrictionAncestorOnly {
617    #[primary_span]
618    pub(crate) span: Span,
619    pub(crate) kind: ResolvingRestrictionKind,
620}
621
622#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            AmbiguousDelegationToInherentImpl {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    AmbiguousDelegationToInherentImpl { span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("ambiguous delegation to inherent impl function")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
623#[diag("ambiguous delegation to inherent impl function")]
624pub(crate) struct AmbiguousDelegationToInherentImpl {
625    #[primary_span]
626    pub span: Span,
627}
628
629#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            DelegationToInherentImplMustContainParentGenerics {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    DelegationToInherentImplMustContainParentGenerics {
                        span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("delegation to inherent impl must contain parent generics")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
630#[diag("delegation to inherent impl must contain parent generics")]
631pub(crate) struct DelegationToInherentImplMustContainParentGenerics {
632    #[primary_span]
633    pub span: Span,
634}
635
636#[derive(const _: () =
    {
        impl<'_sess, G> rustc_errors::Diagnostic<'_sess, G> for
            DelegationToInherentImplParentContainsInfer {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess, G> {
                match self {
                    DelegationToInherentImplParentContainsInfer {
                        span: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("parent segment of delegation to inherent impl can not contain infers")));
                        ;
                        diag.span(__binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
637#[diag("parent segment of delegation to inherent impl can not contain infers")]
638pub(crate) struct DelegationToInherentImplParentContainsInfer {
639    #[primary_span]
640    pub span: Span,
641}