Skip to main content

rustc_lint/
builtin.rs

1//! Lints in the Rust compiler.
2//!
3//! This contains lints which can feasibly be implemented as their own
4//! AST visitor. Also see `rustc_lint_defs::builtin`, which contains the
5//! definitions of lints that are emitted directly inside the main compiler.
6//!
7//! To add a new lint to rustc, declare it here using [`declare_lint!`].
8//! Then add code to emit the new lint in the appropriate circumstances.
9//!
10//! If you define a new [`EarlyLintPass`], you will also need to add it to the
11//! [`crate::early_lint_methods!`] invocation in `lib.rs`.
12//!
13//! If you define a new [`LateLintPass`], you will also need to add it to the
14//! [`crate::late_lint_methods!`] invocation in `lib.rs`.
15
16use std::fmt::Write;
17
18use ast::token::TokenKind;
19use rustc_abi::BackendRepr;
20use rustc_ast::tokenstream::{TokenStream, TokenTree};
21use rustc_ast::visit::{FnCtxt, FnKind};
22use rustc_ast::{self as ast, *};
23use rustc_ast_pretty::pprust::expr_to_string;
24use rustc_attr_parsing::AttributeParser;
25use rustc_errors::{Applicability, Diagnostic, msg};
26use rustc_feature::GateIssue;
27use rustc_hir::attrs::lang_items::LangItem;
28use rustc_hir::attrs::{AttributeKind, DocAttribute};
29use rustc_hir::def::{DefKind, Res};
30use rustc_hir::def_id::{CRATE_DEF_ID, DefId, LocalDefId};
31use rustc_hir::intravisit::FnKind as HirFnKind;
32use rustc_hir::{self as hir, Body, FnDecl, ImplItemImplKind, PatKind, PredicateOrigin, find_attr};
33// Lints from rustc_lint_defs
34pub use rustc_lint_defs::builtin::*;
35use rustc_lint_defs::{declare_lint, declare_lint_pass, fcw, impl_lint_pass};
36use rustc_middle::bug;
37use rustc_middle::ty::layout::LayoutOf;
38use rustc_middle::ty::print::with_no_trimmed_paths;
39use rustc_middle::ty::{
40    self, AssocContainer, Ty, TyCtxt, TypeVisitableExt, Unnormalized, Upcast, VariantDef,
41};
42use rustc_span::edition::Edition;
43use rustc_span::{DUMMY_SP, Ident, InnerSpan, Span, Spanned, Symbol, kw, sym};
44use rustc_target::asm::InlineAsmArch;
45use rustc_trait_selection::infer::{InferCtxtExt, TyCtxtInferExt};
46use rustc_trait_selection::traits;
47use rustc_trait_selection::traits::misc::type_allowed_to_implement_copy;
48use rustc_trait_selection::traits::query::evaluate_obligation::InferCtxtExt as _;
49
50use crate::diagnostics::{
51    BuiltinAnonymousParams, BuiltinConstNoMangle, BuiltinDerefNullptr, BuiltinDoubleNegations,
52    BuiltinDoubleNegationsAddParens, BuiltinEllipsisInclusiveRangePatterns,
53    BuiltinEllipsisInclusiveRangePatternsLint, BuiltinExplicitOutlives,
54    BuiltinExplicitOutlivesSuggestion, BuiltinFeatureIssueNote, BuiltinIncompleteFeatures,
55    BuiltinIncompleteFeaturesHelp, BuiltinInternalFeatures, BuiltinKeywordIdents,
56    BuiltinMissingCopyImpl, BuiltinMissingDebugImpl, BuiltinMissingDoc, BuiltinMutablesTransmutes,
57    BuiltinNonShorthandFieldPatterns, BuiltinSpecialModuleNameUsed, BuiltinTrivialBounds,
58    BuiltinTypeAliasBounds, BuiltinUngatedAsyncFnTrackCaller, BuiltinUnpermittedTypeInit,
59    BuiltinUnpermittedTypeInitSub, BuiltinUnreachablePub, BuiltinUnsafe, BuiltinUnstableFeatures,
60    BuiltinUnusedDocComment, BuiltinUnusedDocCommentSub, BuiltinWhileTrue,
61    EqInternalMethodImplemented, InvalidAsmLabel,
62};
63use crate::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintContext};
64
65#[doc = r" The `while_true` lint detects `while true { }`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,no_run"]
#[doc = r" while true {"]
#[doc = r""]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" `while true` should be replaced with `loop`. A `loop` expression is"]
#[doc =
r" the preferred way to write an infinite loop because it more directly"]
#[doc = r" expresses the intent of the loop."]
static WHILE_TRUE: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "WHILE_TRUE",
            default_level: ::rustc_lint_defs::Warn,
            desc: "suggest using `loop { }` instead of `while true { }`",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
66    /// The `while_true` lint detects `while true { }`.
67    ///
68    /// ### Example
69    ///
70    /// ```rust,no_run
71    /// while true {
72    ///
73    /// }
74    /// ```
75    ///
76    /// {{produces}}
77    ///
78    /// ### Explanation
79    ///
80    /// `while true` should be replaced with `loop`. A `loop` expression is
81    /// the preferred way to write an infinite loop because it more directly
82    /// expresses the intent of the loop.
83    WHILE_TRUE,
84    Warn,
85    "suggest using `loop { }` instead of `while true { }`"
86}
87
88pub struct WhileTrue;
#[automatically_derived]
impl ::core::marker::Copy for WhileTrue { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for WhileTrue { }
#[automatically_derived]
impl ::core::clone::Clone for WhileTrue {
    #[inline]
    fn clone(&self) -> WhileTrue { *self }
}
impl ::rustc_lint_defs::LintPass for WhileTrue {
    fn name(&self) -> &'static str { "WhileTrue" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [WHILE_TRUE]))
    }
}
impl WhileTrue {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [WHILE_TRUE]))
    }
}declare_lint_pass!(WhileTrue => [WHILE_TRUE]);
89
90impl EarlyLintPass for WhileTrue {
91    #[inline]
92    fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
93        if let ast::ExprKind::While(cond, _, label) = &e.kind
94            && let ast::ExprKind::Lit(token_lit) = cond.peel_parens().kind
95            && let token::Lit { kind: token::Bool, symbol: kw::True, .. } = token_lit
96            && !cond.span.from_expansion()
97        {
98            let condition_span = e.span.with_hi(cond.span.hi());
99            let replace = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}loop",
                label.map_or_else(String::new,
                    |label|
                        ::alloc::__export::must_use({
                                ::alloc::fmt::format(format_args!("{0}: ", label.ident))
                            }))))
    })format!(
100                "{}loop",
101                label.map_or_else(String::new, |label| format!("{}: ", label.ident,))
102            );
103            cx.emit_span_lint(
104                WHILE_TRUE,
105                condition_span,
106                BuiltinWhileTrue { suggestion: condition_span, replace },
107            );
108        }
109    }
110}
111
112#[doc =
r" The `non_shorthand_field_patterns` lint detects using `Struct { x: x }`"]
#[doc = r" instead of `Struct { x }` in a pattern."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" struct Point {"]
#[doc = r"     x: i32,"]
#[doc = r"     y: i32,"]
#[doc = r" }"]
#[doc = r""]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r"     let p = Point {"]
#[doc = r"         x: 5,"]
#[doc = r"         y: 5,"]
#[doc = r"     };"]
#[doc = r""]
#[doc = r"     match p {"]
#[doc = r"         Point { x: x, y: y } => (),"]
#[doc = r"     }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The preferred style is to avoid the repetition of specifying both the"]
#[doc = r" field name and the binding name if both identifiers are the same."]
static NON_SHORTHAND_FIELD_PATTERNS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "NON_SHORTHAND_FIELD_PATTERNS",
            default_level: ::rustc_lint_defs::Warn,
            desc: "using `Struct { x: x }` instead of `Struct { x }` in a pattern",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
113    /// The `non_shorthand_field_patterns` lint detects using `Struct { x: x }`
114    /// instead of `Struct { x }` in a pattern.
115    ///
116    /// ### Example
117    ///
118    /// ```rust
119    /// struct Point {
120    ///     x: i32,
121    ///     y: i32,
122    /// }
123    ///
124    ///
125    /// fn main() {
126    ///     let p = Point {
127    ///         x: 5,
128    ///         y: 5,
129    ///     };
130    ///
131    ///     match p {
132    ///         Point { x: x, y: y } => (),
133    ///     }
134    /// }
135    /// ```
136    ///
137    /// {{produces}}
138    ///
139    /// ### Explanation
140    ///
141    /// The preferred style is to avoid the repetition of specifying both the
142    /// field name and the binding name if both identifiers are the same.
143    NON_SHORTHAND_FIELD_PATTERNS,
144    Warn,
145    "using `Struct { x: x }` instead of `Struct { x }` in a pattern"
146}
147
148pub struct NonShorthandFieldPatterns;
#[automatically_derived]
impl ::core::marker::Copy for NonShorthandFieldPatterns { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for NonShorthandFieldPatterns { }
#[automatically_derived]
impl ::core::clone::Clone for NonShorthandFieldPatterns {
    #[inline]
    fn clone(&self) -> NonShorthandFieldPatterns { *self }
}
impl ::rustc_lint_defs::LintPass for NonShorthandFieldPatterns {
    fn name(&self) -> &'static str { "NonShorthandFieldPatterns" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [NON_SHORTHAND_FIELD_PATTERNS]))
    }
}
impl NonShorthandFieldPatterns {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [NON_SHORTHAND_FIELD_PATTERNS]))
    }
}declare_lint_pass!(NonShorthandFieldPatterns => [NON_SHORTHAND_FIELD_PATTERNS]);
149
150impl<'tcx> LateLintPass<'tcx> for NonShorthandFieldPatterns {
151    fn check_pat(&mut self, cx: &LateContext<'_>, pat: &hir::Pat<'_>) {
152        // The result shouldn't be tainted, otherwise it will cause ICE.
153        if let PatKind::Struct(ref qpath, field_pats, _) = pat.kind
154            && cx.typeck_results().tainted_by_errors.is_none()
155        {
156            let variant = cx
157                .typeck_results()
158                .pat_ty(pat)
159                .ty_adt_def()
160                .expect("struct pattern type is not an ADT")
161                .variant_of_res(cx.qpath_res(qpath, pat.hir_id));
162            for fieldpat in field_pats {
163                if fieldpat.is_shorthand {
164                    continue;
165                }
166                if fieldpat.span.from_expansion() {
167                    // Don't lint if this is a macro expansion: macro authors
168                    // shouldn't have to worry about this kind of style issue
169                    // (Issue #49588)
170                    continue;
171                }
172                if let PatKind::Binding(binding_annot, _, ident, None) = fieldpat.pat.kind {
173                    if cx.tcx.find_field_index(ident, variant)
174                        == Some(cx.typeck_results().field_index(fieldpat.hir_id))
175                    {
176                        cx.emit_span_lint(
177                            NON_SHORTHAND_FIELD_PATTERNS,
178                            fieldpat.span,
179                            BuiltinNonShorthandFieldPatterns {
180                                ident,
181                                suggestion: fieldpat.span,
182                                prefix: binding_annot.prefix_str(),
183                            },
184                        );
185                    }
186                }
187            }
188        }
189    }
190}
191
192pub struct UnsafeCode;
#[automatically_derived]
impl ::core::marker::Copy for UnsafeCode { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for UnsafeCode { }
#[automatically_derived]
impl ::core::clone::Clone for UnsafeCode {
    #[inline]
    fn clone(&self) -> UnsafeCode { *self }
}
impl ::rustc_lint_defs::LintPass for UnsafeCode {
    fn name(&self) -> &'static str { "UnsafeCode" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNSAFE_CODE]))
    }
}
impl UnsafeCode {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNSAFE_CODE]))
    }
}declare_lint_pass!(UnsafeCode => [UNSAFE_CODE]);
193
194impl UnsafeCode {
195    fn report_unsafe(
196        &self,
197        cx: &EarlyContext<'_>,
198        span: Span,
199        decorate: impl for<'a> Diagnostic<'a, ()>,
200    ) {
201        // This comes from a macro that has `#[allow_internal_unsafe]`.
202        if span.allows_unsafe() {
203            return;
204        }
205
206        cx.emit_span_lint(UNSAFE_CODE, span, decorate);
207    }
208}
209
210impl EarlyLintPass for UnsafeCode {
211    #[inline]
212    fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
213        if let ast::ExprKind::Block(ref blk, _) = e.kind {
214            // Don't warn about generated blocks; that'll just pollute the output.
215            if blk.rules == ast::BlockCheckMode::Unsafe(ast::UserProvided) {
216                self.report_unsafe(cx, blk.span, BuiltinUnsafe::UnsafeBlock);
217            }
218        }
219    }
220
221    fn check_item(&mut self, cx: &EarlyContext<'_>, it: &ast::Item) {
222        match it.kind {
223            ast::ItemKind::Trait(ast::Trait { safety: ast::Safety::Unsafe(_), .. }) => {
224                self.report_unsafe(cx, it.span, BuiltinUnsafe::UnsafeTrait);
225            }
226
227            ast::ItemKind::Impl(ast::Impl {
228                of_trait: Some(ast::TraitImplHeader { safety: ast::Safety::Unsafe(_), .. }),
229                ..
230            }) => {
231                self.report_unsafe(cx, it.span, BuiltinUnsafe::UnsafeImpl);
232            }
233
234            ast::ItemKind::GlobalAsm(..) => {
235                self.report_unsafe(cx, it.span, BuiltinUnsafe::GlobalAsm);
236            }
237
238            ast::ItemKind::ForeignMod(ForeignMod { safety, .. }) => {
239                if let Safety::Unsafe(_) = safety {
240                    self.report_unsafe(cx, it.span, BuiltinUnsafe::UnsafeExternBlock);
241                }
242            }
243
244            ast::ItemKind::MacroDef(..) => {
245                if let Some(hir::Attribute::Parsed(AttributeKind::AllowInternalUnsafe(span))) =
246                    AttributeParser::parse_limited_sym(
247                        cx.builder.sess(),
248                        &it.attrs,
249                        &[sym::allow_internal_unsafe],
250                    )
251                {
252                    self.report_unsafe(cx, span, BuiltinUnsafe::AllowInternalUnsafe);
253                }
254            }
255
256            _ => {}
257        }
258    }
259
260    fn check_fn(&mut self, cx: &EarlyContext<'_>, fk: FnKind<'_>, span: Span, _: ast::NodeId) {
261        if let FnKind::Fn(
262            ctxt,
263            _,
264            ast::Fn {
265                sig: ast::FnSig { header: ast::FnHeader { safety: ast::Safety::Unsafe(_), .. }, .. },
266                body,
267                ..
268            },
269        ) = fk
270        {
271            let decorator = match ctxt {
272                FnCtxt::Foreign => return,
273                FnCtxt::Free => BuiltinUnsafe::DeclUnsafeFn,
274                FnCtxt::Assoc(_) if body.is_none() => BuiltinUnsafe::DeclUnsafeMethod,
275                FnCtxt::Assoc(_) => BuiltinUnsafe::ImplUnsafeMethod,
276            };
277            self.report_unsafe(cx, span, decorator);
278        }
279    }
280}
281
282#[doc =
r" The `missing_docs` lint detects missing documentation for public items."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(missing_docs)]"]
#[doc = r" pub fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This lint is intended to ensure that a library is well-documented."]
#[doc =
r" Items without documentation can be difficult for users to understand"]
#[doc = r" how to use properly."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it can be noisy, and not all"#]
#[doc = r" projects may want to enforce everything to be documented."]
pub static MISSING_DOCS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "MISSING_DOCS",
            default_level: ::rustc_lint_defs::Allow,
            desc: "detects missing documentation for public members",
            is_externally_loaded: false,
            report_in_external_macro: true,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
283    /// The `missing_docs` lint detects missing documentation for public items.
284    ///
285    /// ### Example
286    ///
287    /// ```rust,compile_fail
288    /// #![deny(missing_docs)]
289    /// pub fn foo() {}
290    /// ```
291    ///
292    /// {{produces}}
293    ///
294    /// ### Explanation
295    ///
296    /// This lint is intended to ensure that a library is well-documented.
297    /// Items without documentation can be difficult for users to understand
298    /// how to use properly.
299    ///
300    /// This lint is "allow" by default because it can be noisy, and not all
301    /// projects may want to enforce everything to be documented.
302    pub MISSING_DOCS,
303    Allow,
304    "detects missing documentation for public members",
305    report_in_external_macro
306}
307
308#[derive(#[automatically_derived]
impl ::core::default::Default for MissingDoc {
    #[inline]
    fn default() -> MissingDoc { MissingDoc {} }
}Default)]
309pub struct MissingDoc;
310
311impl ::rustc_lint_defs::LintPass for MissingDoc {
    fn name(&self) -> &'static str { "MissingDoc" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MISSING_DOCS]))
    }
}
impl MissingDoc {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MISSING_DOCS]))
    }
}impl_lint_pass!(MissingDoc => [MISSING_DOCS]);
312
313fn has_doc(attr: &hir::Attribute) -> bool {
314    if #[allow(non_exhaustive_omitted_patterns)] match attr {
    hir::Attribute::Parsed(AttributeKind::DocComment { .. }) => true,
    _ => false,
}matches!(attr, hir::Attribute::Parsed(AttributeKind::DocComment { .. })) {
315        return true;
316    }
317
318    if let hir::Attribute::Parsed(AttributeKind::Doc(d)) = attr
319        && #[allow(non_exhaustive_omitted_patterns)] match d.as_ref() {
    DocAttribute { hidden: Some(..), .. } => true,
    _ => false,
}matches!(d.as_ref(), DocAttribute { hidden: Some(..), .. })
320    {
321        return true;
322    }
323
324    false
325}
326
327impl MissingDoc {
328    fn check_missing_docs_attrs(
329        &self,
330        cx: &LateContext<'_>,
331        def_id: LocalDefId,
332        article: &'static str,
333        desc: &'static str,
334    ) {
335        // Only check publicly-visible items, using the result from the privacy pass.
336        // It's an option so the crate root can also use this function (it doesn't
337        // have a `NodeId`).
338        if def_id != CRATE_DEF_ID && !cx.effective_visibilities.is_exported(def_id) {
339            return;
340        }
341
342        let attrs = cx.tcx.hir_attrs(cx.tcx.local_def_id_to_hir_id(def_id));
343        let has_doc = attrs.iter().any(has_doc);
344        if !has_doc {
345            cx.emit_span_lint(
346                MISSING_DOCS,
347                cx.tcx.def_span(def_id),
348                BuiltinMissingDoc { article, desc },
349            );
350        }
351    }
352}
353
354impl<'tcx> LateLintPass<'tcx> for MissingDoc {
355    fn check_crate(&mut self, cx: &LateContext<'_>) {
356        self.check_missing_docs_attrs(cx, CRATE_DEF_ID, "the", "crate");
357    }
358
359    fn check_item(&mut self, cx: &LateContext<'_>, it: &hir::Item<'_>) {
360        // Previously the Impl and Use types have been excluded from missing docs,
361        // so we will continue to exclude them for compatibility.
362        //
363        // The documentation on `ExternCrate` is not used at the moment so no need to warn for it.
364        if let hir::ItemKind::Impl(..) | hir::ItemKind::Use(..) | hir::ItemKind::ExternCrate(..) =
365            it.kind
366        {
367            return;
368        }
369
370        let (article, desc) = cx.tcx.article_and_description(it.owner_id.to_def_id());
371        self.check_missing_docs_attrs(cx, it.owner_id.def_id, article, desc);
372    }
373
374    fn check_trait_item(&mut self, cx: &LateContext<'_>, trait_item: &hir::TraitItem<'_>) {
375        let (article, desc) = cx.tcx.article_and_description(trait_item.owner_id.to_def_id());
376
377        self.check_missing_docs_attrs(cx, trait_item.owner_id.def_id, article, desc);
378    }
379
380    fn check_impl_item(&mut self, cx: &LateContext<'_>, impl_item: &hir::ImplItem<'_>) {
381        let container = cx.tcx.associated_item(impl_item.owner_id.def_id).container;
382
383        match container {
384            // If the method is an impl for a trait, don't doc.
385            AssocContainer::TraitImpl(_) => return,
386            AssocContainer::Trait => {}
387            // If the method is an impl for an item with docs_hidden, don't doc.
388            AssocContainer::InherentImpl => {
389                let parent = cx.tcx.hir_get_parent_item(impl_item.hir_id());
390                let impl_ty = cx.tcx.type_of(parent).instantiate_identity().skip_norm_wip();
391                let outerdef = match impl_ty.kind() {
392                    ty::Adt(def, _) => Some(def.did()),
393                    ty::Foreign(def_id) => Some(*def_id),
394                    _ => None,
395                };
396                let is_hidden = match outerdef {
397                    Some(id) => cx.tcx.is_doc_hidden(id),
398                    None => false,
399                };
400                if is_hidden {
401                    return;
402                }
403            }
404        }
405
406        let (article, desc) = cx.tcx.article_and_description(impl_item.owner_id.to_def_id());
407        self.check_missing_docs_attrs(cx, impl_item.owner_id.def_id, article, desc);
408    }
409
410    fn check_foreign_item(&mut self, cx: &LateContext<'_>, foreign_item: &hir::ForeignItem<'_>) {
411        let (article, desc) = cx.tcx.article_and_description(foreign_item.owner_id.to_def_id());
412        self.check_missing_docs_attrs(cx, foreign_item.owner_id.def_id, article, desc);
413    }
414
415    fn check_field_def(&mut self, cx: &LateContext<'_>, sf: &hir::FieldDef<'_>) {
416        if !sf.is_positional() {
417            self.check_missing_docs_attrs(cx, sf.def_id, "a", "struct field")
418        }
419    }
420
421    fn check_variant(&mut self, cx: &LateContext<'_>, v: &hir::Variant<'_>) {
422        self.check_missing_docs_attrs(cx, v.def_id, "a", "variant");
423    }
424}
425
426#[doc =
r" The `missing_copy_implementations` lint detects potentially-forgotten"]
#[doc = r" implementations of [`Copy`] for public types."]
#[doc = r""]
#[doc = r" [`Copy`]: https://doc.rust-lang.org/std/marker/trait.Copy.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(missing_copy_implementations)]"]
#[doc = r" pub struct Foo {"]
#[doc = r"     pub field: i32"]
#[doc = r" }"]
#[doc = r" # fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Historically (before 1.0), types were automatically marked as `Copy`"]
#[doc =
r" if possible. This was changed so that it required an explicit opt-in"]
#[doc =
r" by implementing the `Copy` trait. As part of this change, a lint was"]
#[doc = r" added to alert if a copyable type was not marked `Copy`."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because this code isn't bad; it is"#]
#[doc =
r" common to write newtypes like this specifically so that a `Copy` type"]
#[doc =
r" is no longer `Copy`. `Copy` types can result in unintended copies of"]
#[doc = r" large data which can impact performance."]
pub static MISSING_COPY_IMPLEMENTATIONS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "MISSING_COPY_IMPLEMENTATIONS",
            default_level: ::rustc_lint_defs::Allow,
            desc: "detects potentially-forgotten implementations of `Copy`",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
427    /// The `missing_copy_implementations` lint detects potentially-forgotten
428    /// implementations of [`Copy`] for public types.
429    ///
430    /// [`Copy`]: https://doc.rust-lang.org/std/marker/trait.Copy.html
431    ///
432    /// ### Example
433    ///
434    /// ```rust,compile_fail
435    /// #![deny(missing_copy_implementations)]
436    /// pub struct Foo {
437    ///     pub field: i32
438    /// }
439    /// # fn main() {}
440    /// ```
441    ///
442    /// {{produces}}
443    ///
444    /// ### Explanation
445    ///
446    /// Historically (before 1.0), types were automatically marked as `Copy`
447    /// if possible. This was changed so that it required an explicit opt-in
448    /// by implementing the `Copy` trait. As part of this change, a lint was
449    /// added to alert if a copyable type was not marked `Copy`.
450    ///
451    /// This lint is "allow" by default because this code isn't bad; it is
452    /// common to write newtypes like this specifically so that a `Copy` type
453    /// is no longer `Copy`. `Copy` types can result in unintended copies of
454    /// large data which can impact performance.
455    pub MISSING_COPY_IMPLEMENTATIONS,
456    Allow,
457    "detects potentially-forgotten implementations of `Copy`"
458}
459
460pub struct MissingCopyImplementations;
#[automatically_derived]
impl ::core::marker::Copy for MissingCopyImplementations { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for MissingCopyImplementations { }
#[automatically_derived]
impl ::core::clone::Clone for MissingCopyImplementations {
    #[inline]
    fn clone(&self) -> MissingCopyImplementations { *self }
}
impl ::rustc_lint_defs::LintPass for MissingCopyImplementations {
    fn name(&self) -> &'static str { "MissingCopyImplementations" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MISSING_COPY_IMPLEMENTATIONS]))
    }
}
impl MissingCopyImplementations {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MISSING_COPY_IMPLEMENTATIONS]))
    }
}declare_lint_pass!(MissingCopyImplementations => [MISSING_COPY_IMPLEMENTATIONS]);
461
462impl<'tcx> LateLintPass<'tcx> for MissingCopyImplementations {
463    fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
464        if !cx.effective_visibilities.is_reachable(item.owner_id.def_id) {
465            return;
466        }
467        let (def, ty) = match item.kind {
468            hir::ItemKind::Struct(_, generics, _) => {
469                if !generics.params.is_empty() {
470                    return;
471                }
472                let def = cx.tcx.adt_def(item.owner_id);
473                (def, Ty::new_adt(cx.tcx, def, ty::List::empty()))
474            }
475            hir::ItemKind::Union(_, generics, _) => {
476                if !generics.params.is_empty() {
477                    return;
478                }
479                let def = cx.tcx.adt_def(item.owner_id);
480                (def, Ty::new_adt(cx.tcx, def, ty::List::empty()))
481            }
482            hir::ItemKind::Enum(_, generics, _) => {
483                if !generics.params.is_empty() {
484                    return;
485                }
486                let def = cx.tcx.adt_def(item.owner_id);
487                (def, Ty::new_adt(cx.tcx, def, ty::List::empty()))
488            }
489            _ => return,
490        };
491        if def.has_dtor(cx.tcx) {
492            return;
493        }
494
495        // If the type contains a raw pointer, it may represent something like a handle,
496        // and recommending Copy might be a bad idea.
497        for field in def.all_fields() {
498            let did = field.did;
499            if cx.tcx.type_of(did).instantiate_identity().skip_norm_wip().is_raw_ptr() {
500                return;
501            }
502        }
503        if cx.type_is_copy_modulo_regions(ty) {
504            return;
505        }
506        if type_implements_negative_copy_modulo_regions(cx.tcx, ty, cx.typing_env()) {
507            return;
508        }
509        if def.is_variant_list_non_exhaustive()
510            || def.variants().iter().any(|variant| variant.is_field_list_non_exhaustive())
511        {
512            return;
513        }
514
515        // We shouldn't recommend implementing `Copy` on stateful things,
516        // such as iterators.
517        if let Some(iter_trait) = cx.tcx.get_diagnostic_item(sym::Iterator)
518            && cx
519                .tcx
520                .infer_ctxt()
521                .build(cx.typing_mode())
522                .type_implements_trait(iter_trait, [ty], cx.param_env)
523                .must_apply_modulo_regions()
524        {
525            return;
526        }
527
528        // Default value of clippy::trivially_copy_pass_by_ref
529        const MAX_SIZE: u64 = 256;
530
531        if let Some(size) = cx.layout_of(ty).ok().map(|l| l.size.bytes()) {
532            if size > MAX_SIZE {
533                return;
534            }
535        }
536
537        if type_allowed_to_implement_copy(
538            cx.tcx,
539            cx.param_env,
540            ty,
541            traits::ObligationCause::misc(item.span, item.owner_id.def_id),
542            hir::Safety::Safe,
543        )
544        .is_ok()
545        {
546            cx.emit_span_lint(MISSING_COPY_IMPLEMENTATIONS, item.span, BuiltinMissingCopyImpl);
547        }
548    }
549}
550
551/// Check whether a `ty` has a negative `Copy` implementation, ignoring outlives constraints.
552fn type_implements_negative_copy_modulo_regions<'tcx>(
553    tcx: TyCtxt<'tcx>,
554    ty: Ty<'tcx>,
555    typing_env: ty::TypingEnv<'tcx>,
556) -> bool {
557    let (infcx, param_env) = tcx.infer_ctxt().build_with_typing_env(typing_env);
558    let trait_ref = ty::TraitRef::new(tcx, tcx.require_lang_item(LangItem::Copy, DUMMY_SP), [ty]);
559    let pred = ty::TraitClause { trait_ref, polarity: ty::ClausePolarity::Negative };
560    let obligation = traits::Obligation {
561        cause: traits::ObligationCause::dummy(),
562        param_env,
563        recursion_depth: 0,
564        predicate: pred.upcast(tcx),
565    };
566    infcx.predicate_must_hold_modulo_regions(&obligation)
567}
568
569#[doc = r" The `missing_debug_implementations` lint detects missing"]
#[doc = r" implementations of [`fmt::Debug`] for public types."]
#[doc = r""]
#[doc =
r" [`fmt::Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(missing_debug_implementations)]"]
#[doc = r" pub struct Foo;"]
#[doc = r" # fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Having a `Debug` implementation on all types can assist with"]
#[doc =
r" debugging, as it provides a convenient way to format and display a"]
#[doc = r" value. Using the `#[derive(Debug)]` attribute will automatically"]
#[doc =
r" generate a typical implementation, or a custom implementation can be"]
#[doc = r" added by manually implementing the `Debug` trait."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because adding `Debug` to all types can"#]
#[doc =
r" have a negative impact on compile time and code size. It also requires"]
#[doc =
r" boilerplate to be added to every type, which can be an impediment."]
static MISSING_DEBUG_IMPLEMENTATIONS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "MISSING_DEBUG_IMPLEMENTATIONS",
            default_level: ::rustc_lint_defs::Allow,
            desc: "detects missing implementations of Debug",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
570    /// The `missing_debug_implementations` lint detects missing
571    /// implementations of [`fmt::Debug`] for public types.
572    ///
573    /// [`fmt::Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html
574    ///
575    /// ### Example
576    ///
577    /// ```rust,compile_fail
578    /// #![deny(missing_debug_implementations)]
579    /// pub struct Foo;
580    /// # fn main() {}
581    /// ```
582    ///
583    /// {{produces}}
584    ///
585    /// ### Explanation
586    ///
587    /// Having a `Debug` implementation on all types can assist with
588    /// debugging, as it provides a convenient way to format and display a
589    /// value. Using the `#[derive(Debug)]` attribute will automatically
590    /// generate a typical implementation, or a custom implementation can be
591    /// added by manually implementing the `Debug` trait.
592    ///
593    /// This lint is "allow" by default because adding `Debug` to all types can
594    /// have a negative impact on compile time and code size. It also requires
595    /// boilerplate to be added to every type, which can be an impediment.
596    MISSING_DEBUG_IMPLEMENTATIONS,
597    Allow,
598    "detects missing implementations of Debug"
599}
600
601#[derive(#[automatically_derived]
impl ::core::default::Default for MissingDebugImplementations {
    #[inline]
    fn default() -> MissingDebugImplementations {
        MissingDebugImplementations {}
    }
}Default)]
602pub(crate) struct MissingDebugImplementations;
603
604impl ::rustc_lint_defs::LintPass for MissingDebugImplementations {
    fn name(&self) -> &'static str { "MissingDebugImplementations" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MISSING_DEBUG_IMPLEMENTATIONS]))
    }
}
impl MissingDebugImplementations {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MISSING_DEBUG_IMPLEMENTATIONS]))
    }
}impl_lint_pass!(MissingDebugImplementations => [MISSING_DEBUG_IMPLEMENTATIONS]);
605
606impl<'tcx> LateLintPass<'tcx> for MissingDebugImplementations {
607    fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
608        let def_id = item.owner_id.def_id;
609        if !cx.effective_visibilities.is_reachable(def_id) {
610            return;
611        }
612
613        let is_generic = match item.kind {
614            hir::ItemKind::Struct(_, generics, _)
615            | hir::ItemKind::Union(_, generics, _)
616            | hir::ItemKind::Enum(_, generics, _) => !generics.params.is_empty(),
617            _ => return,
618        };
619
620        let tcx = cx.tcx;
621
622        // Avoid listing trait impls if the trait is allowed.
623        if tcx.lint_level_spec_at_node(MISSING_DEBUG_IMPLEMENTATIONS, item.hir_id()).is_allow() {
624            return;
625        }
626
627        let Some(debug) = tcx.get_diagnostic_item(sym::Debug) else { return };
628
629        let ty = tcx.type_of(item.owner_id);
630        if tcx
631            .non_blanket_impls_for_ty(debug, ty.instantiate_identity().skip_norm_wip())
632            .next()
633            .is_some()
634        {
635            return;
636        }
637
638        let infcx = tcx.infer_ctxt().build(cx.typing_mode());
639        if is_generic {
640            let args = infcx.fresh_args_for_item(item.span, def_id.to_def_id());
641            if infcx
642                .type_implements_trait_shallow(
643                    debug,
644                    ty.instantiate(tcx, args).skip_norm_wip(),
645                    cx.param_env,
646                )
647                .is_some()
648            {
649                return;
650            }
651        } else if infcx
652            .type_implements_trait(debug, [ty.instantiate_identity().skip_norm_wip()], cx.param_env)
653            .must_apply_modulo_regions()
654        {
655            return;
656        }
657
658        cx.emit_span_lint(
659            MISSING_DEBUG_IMPLEMENTATIONS,
660            item.span,
661            BuiltinMissingDebugImpl { tcx: cx.tcx, def_id: debug },
662        );
663    }
664}
665
666#[doc =
r" The `anonymous_parameters` lint detects anonymous parameters in trait"]
#[doc = r" definitions."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2015,compile_fail"]
#[doc = r" #![deny(anonymous_parameters)]"]
#[doc = r" // edition 2015"]
#[doc = r" pub trait Foo {"]
#[doc = r"     fn foo(usize);"]
#[doc = r" }"]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This syntax is mostly a historical accident, and can be worked around"]
#[doc =
r" quite easily by adding an `_` pattern or a descriptive identifier:"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" trait Foo {"]
#[doc = r"     fn foo(_: usize);"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This syntax is now a hard error in the 2018 edition. In the 2015"]
#[doc = r#" edition, this lint is "warn" by default. This lint"#]
#[doc = r" enables the [`cargo fix`] tool with the `--edition` flag to"]
#[doc =
r" automatically transition old code from the 2015 edition to 2018. The"]
#[doc = r" tool will run this lint and automatically apply the"]
#[doc = r" suggested fix from the compiler (which is to add `_` to each"]
#[doc =
r" parameter). This provides a completely automated way to update old"]
#[doc = r" code for a new edition. See [issue #41686] for more details."]
#[doc = r""]
#[doc = r" [issue #41686]: https://github.com/rust-lang/rust/issues/41686"]
#[doc =
r" [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html"]
pub static ANONYMOUS_PARAMETERS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "ANONYMOUS_PARAMETERS",
            default_level: ::rustc_lint_defs::Warn,
            desc: "detects anonymous parameters",
            is_externally_loaded: false,
            future_incompatible: Some(::rustc_lint_defs::FutureIncompatibleInfo {
                    reason: ::rustc_lint_defs::FutureIncompatibilityReason::EditionError(::rustc_lint_defs::EditionFcw {
                            edition: rustc_span::edition::Edition::Edition2018,
                            page_slug: "trait-fn-parameters",
                        }),
                    ..::rustc_lint_defs::FutureIncompatibleInfo::default_fields_for_macro()
                }),
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
667    /// The `anonymous_parameters` lint detects anonymous parameters in trait
668    /// definitions.
669    ///
670    /// ### Example
671    ///
672    /// ```rust,edition2015,compile_fail
673    /// #![deny(anonymous_parameters)]
674    /// // edition 2015
675    /// pub trait Foo {
676    ///     fn foo(usize);
677    /// }
678    /// fn main() {}
679    /// ```
680    ///
681    /// {{produces}}
682    ///
683    /// ### Explanation
684    ///
685    /// This syntax is mostly a historical accident, and can be worked around
686    /// quite easily by adding an `_` pattern or a descriptive identifier:
687    ///
688    /// ```rust
689    /// trait Foo {
690    ///     fn foo(_: usize);
691    /// }
692    /// ```
693    ///
694    /// This syntax is now a hard error in the 2018 edition. In the 2015
695    /// edition, this lint is "warn" by default. This lint
696    /// enables the [`cargo fix`] tool with the `--edition` flag to
697    /// automatically transition old code from the 2015 edition to 2018. The
698    /// tool will run this lint and automatically apply the
699    /// suggested fix from the compiler (which is to add `_` to each
700    /// parameter). This provides a completely automated way to update old
701    /// code for a new edition. See [issue #41686] for more details.
702    ///
703    /// [issue #41686]: https://github.com/rust-lang/rust/issues/41686
704    /// [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html
705    pub ANONYMOUS_PARAMETERS,
706    Warn,
707    "detects anonymous parameters",
708    @future_incompatible = FutureIncompatibleInfo {
709        reason: fcw!(EditionError 2018 "trait-fn-parameters"),
710    };
711}
712
713#[doc = r" Checks for use of anonymous parameters (RFC 1685)."]
pub struct AnonymousParameters;
#[automatically_derived]
impl ::core::marker::Copy for AnonymousParameters { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AnonymousParameters { }
#[automatically_derived]
impl ::core::clone::Clone for AnonymousParameters {
    #[inline]
    fn clone(&self) -> AnonymousParameters { *self }
}
impl ::rustc_lint_defs::LintPass for AnonymousParameters {
    fn name(&self) -> &'static str { "AnonymousParameters" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [ANONYMOUS_PARAMETERS]))
    }
}
impl AnonymousParameters {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [ANONYMOUS_PARAMETERS]))
    }
}declare_lint_pass!(
714    /// Checks for use of anonymous parameters (RFC 1685).
715    AnonymousParameters => [ANONYMOUS_PARAMETERS]
716);
717
718impl EarlyLintPass for AnonymousParameters {
719    fn check_trait_item(&mut self, cx: &EarlyContext<'_>, it: &ast::AssocItem) {
720        if cx.sess().edition() != Edition::Edition2015 {
721            // This is a hard error in future editions; avoid linting and erroring
722            return;
723        }
724        if let ast::AssocItemKind::Fn(Fn { ref sig, .. }) = it.kind {
725            for arg in sig.decl.inputs.iter() {
726                if let ast::PatKind::Missing = arg.pat.kind {
727                    let ty_snip = cx.sess().source_map().span_to_snippet(arg.ty.span);
728
729                    let (ty_snip, appl) = if let Ok(ref snip) = ty_snip {
730                        (snip.as_str(), Applicability::MachineApplicable)
731                    } else {
732                        ("<type>", Applicability::HasPlaceholders)
733                    };
734                    cx.emit_span_lint(
735                        ANONYMOUS_PARAMETERS,
736                        arg.pat.span,
737                        BuiltinAnonymousParams { suggestion: (arg.pat.span, appl), ty_snip },
738                    );
739                }
740            }
741        }
742    }
743}
744
745fn warn_if_doc(cx: &EarlyContext<'_>, node_span: Span, node_kind: &str, attrs: &[ast::Attribute]) {
746    use rustc_ast::token::CommentKind;
747
748    let mut attrs = attrs.iter().peekable();
749
750    // Accumulate a single span for sugared doc comments.
751    let mut sugared_span: Option<Span> = None;
752
753    while let Some(attr) = attrs.next() {
754        let (is_doc_comment, is_doc_attribute) = match &attr.kind {
755            AttrKind::DocComment(..) => (true, false),
756            AttrKind::Normal(normal) if normal.item.path == sym::doc => (true, true),
757            _ => (false, false),
758        };
759        if is_doc_comment {
760            sugared_span =
761                Some(sugared_span.map_or(attr.span, |span| span.with_hi(attr.span.hi())));
762        }
763
764        if !is_doc_attribute && attrs.peek().is_some_and(|next_attr| next_attr.is_doc_comment()) {
765            continue;
766        }
767
768        let span = sugared_span.take().unwrap_or(attr.span);
769
770        if is_doc_comment || is_doc_attribute {
771            let sub = match attr.kind {
772                AttrKind::DocComment(CommentKind::Line, _) | AttrKind::Normal(..) => {
773                    BuiltinUnusedDocCommentSub::PlainHelp
774                }
775                AttrKind::DocComment(CommentKind::Block, _) => {
776                    BuiltinUnusedDocCommentSub::BlockHelp
777                }
778                AttrKind::Synthetic(..) => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
779            };
780            cx.emit_span_lint(
781                UNUSED_DOC_COMMENTS,
782                span,
783                BuiltinUnusedDocComment { kind: node_kind, label: node_span, sub },
784            );
785        }
786    }
787}
788
789impl EarlyLintPass for UnusedDocComment {
790    fn check_stmt(&mut self, cx: &EarlyContext<'_>, stmt: &ast::Stmt) {
791        let kind = match stmt.kind {
792            ast::StmtKind::Let(..) => "statements",
793            // Disabled pending discussion in #78306
794            ast::StmtKind::Item(..) => return,
795            // expressions will be reported by `check_expr`.
796            ast::StmtKind::Empty
797            | ast::StmtKind::Semi(_)
798            | ast::StmtKind::Expr(_)
799            | ast::StmtKind::MacCall(_) => return,
800        };
801
802        warn_if_doc(cx, stmt.span, kind, stmt.kind.attrs());
803    }
804
805    fn check_arm(&mut self, cx: &EarlyContext<'_>, arm: &ast::Arm) {
806        if let Some(body) = &arm.body {
807            let arm_span = arm.pat.span.with_hi(body.span.hi());
808            warn_if_doc(cx, arm_span, "match arms", &arm.attrs);
809        }
810    }
811
812    fn check_pat(&mut self, cx: &EarlyContext<'_>, pat: &ast::Pat) {
813        if let ast::PatKind::Struct(_, _, fields, _) = &pat.kind {
814            for field in fields {
815                warn_if_doc(cx, field.span, "pattern fields", &field.attrs);
816            }
817        }
818    }
819
820    fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr) {
821        warn_if_doc(cx, expr.span, "expressions", &expr.attrs);
822
823        if let ExprKind::Struct(s) = &expr.kind {
824            for field in &s.fields {
825                warn_if_doc(cx, field.span, "expression fields", &field.attrs);
826            }
827        }
828    }
829
830    fn check_generic_param(&mut self, cx: &EarlyContext<'_>, param: &ast::GenericParam) {
831        warn_if_doc(cx, param.ident.span, "generic parameters", &param.attrs);
832    }
833
834    fn check_block(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) {
835        warn_if_doc(cx, block.span, "blocks", block.attrs());
836    }
837
838    fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
839        if let ast::ItemKind::ForeignMod(_) = item.kind {
840            warn_if_doc(cx, item.span, "extern blocks", &item.attrs);
841        }
842    }
843}
844
845#[doc =
r" The `no_mangle_const_items` lint detects any `const` items with the"]
#[doc = r" [`no_mangle` attribute]."]
#[doc = r""]
#[doc =
r" [`no_mangle` attribute]: https://doc.rust-lang.org/reference/abi.html#the-no_mangle-attribute"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail,edition2021"]
#[doc = r" #[no_mangle]"]
#[doc = r" const FOO: i32 = 5;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Constants do not have their symbols exported, and therefore, this"]
#[doc = r" probably means you meant to use a [`static`], not a [`const`]."]
#[doc = r""]
#[doc =
r" [`static`]: https://doc.rust-lang.org/reference/items/static-items.html"]
#[doc =
r" [`const`]: https://doc.rust-lang.org/reference/items/constant-items.html"]
static NO_MANGLE_CONST_ITEMS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "NO_MANGLE_CONST_ITEMS",
            default_level: ::rustc_lint_defs::Deny,
            desc: "const items will not have their symbols exported",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
846    /// The `no_mangle_const_items` lint detects any `const` items with the
847    /// [`no_mangle` attribute].
848    ///
849    /// [`no_mangle` attribute]: https://doc.rust-lang.org/reference/abi.html#the-no_mangle-attribute
850    ///
851    /// ### Example
852    ///
853    /// ```rust,compile_fail,edition2021
854    /// #[no_mangle]
855    /// const FOO: i32 = 5;
856    /// ```
857    ///
858    /// {{produces}}
859    ///
860    /// ### Explanation
861    ///
862    /// Constants do not have their symbols exported, and therefore, this
863    /// probably means you meant to use a [`static`], not a [`const`].
864    ///
865    /// [`static`]: https://doc.rust-lang.org/reference/items/static-items.html
866    /// [`const`]: https://doc.rust-lang.org/reference/items/constant-items.html
867    NO_MANGLE_CONST_ITEMS,
868    Deny,
869    "const items will not have their symbols exported"
870}
871
872pub struct InvalidNoMangleItems;
#[automatically_derived]
impl ::core::marker::Copy for InvalidNoMangleItems { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for InvalidNoMangleItems { }
#[automatically_derived]
impl ::core::clone::Clone for InvalidNoMangleItems {
    #[inline]
    fn clone(&self) -> InvalidNoMangleItems { *self }
}
impl ::rustc_lint_defs::LintPass for InvalidNoMangleItems {
    fn name(&self) -> &'static str { "InvalidNoMangleItems" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [NO_MANGLE_CONST_ITEMS]))
    }
}
impl InvalidNoMangleItems {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [NO_MANGLE_CONST_ITEMS]))
    }
}declare_lint_pass!(InvalidNoMangleItems => [NO_MANGLE_CONST_ITEMS]);
873
874impl InvalidNoMangleItems {
875    fn check_no_mangle_on_generic_fn(
876        &self,
877        cx: &LateContext<'_>,
878        attr_span: Span,
879        def_id: LocalDefId,
880    ) {
881        let generics = cx.tcx.generics_of(def_id);
882        if generics.requires_monomorphization(cx.tcx) {
883            cx.tcx.dcx().emit_err(crate::diagnostics::BuiltinNoMangleGeneric {
884                span: cx.tcx.def_span(def_id),
885                suggestion: attr_span,
886            });
887        }
888    }
889}
890
891impl<'tcx> LateLintPass<'tcx> for InvalidNoMangleItems {
892    fn check_item(&mut self, cx: &LateContext<'_>, it: &hir::Item<'_>) {
893        let attrs = cx.tcx.hir_attrs(it.hir_id());
894        match it.kind {
895            hir::ItemKind::Fn { .. } => {
896                if let Some(attr_span) = {
    'done:
        {
        for i in attrs {
            #[allow(unused_imports)]
            use ::rustc_attr_ir::AttributeKind::*;
            let i: &::rustc_attr_ir::Attribute = i;
            match i {
                ::rustc_attr_ir::Attribute::Parsed(ExportName { span, .. }) =>
                    {
                    break 'done Some(*span);
                }
                ::rustc_attr_ir::Attribute::Unparsed(..) =>
                    {}
                    #[deny(unreachable_patterns)]
                    _ => {}
            }
        }
        None
    }
}find_attr!(attrs, ExportName {span, ..} => *span)
897                    .or_else(|| {
    'done:
        {
        for i in attrs {
            #[allow(unused_imports)]
            use ::rustc_attr_ir::AttributeKind::*;
            let i: &::rustc_attr_ir::Attribute = i;
            match i {
                ::rustc_attr_ir::Attribute::Parsed(NoMangle(span)) => {
                    break 'done Some(*span);
                }
                ::rustc_attr_ir::Attribute::Unparsed(..) =>
                    {}
                    #[deny(unreachable_patterns)]
                    _ => {}
            }
        }
        None
    }
}find_attr!(attrs, NoMangle(span) => *span))
898                {
899                    self.check_no_mangle_on_generic_fn(cx, attr_span, it.owner_id.def_id);
900                }
901            }
902            hir::ItemKind::Const(ident, generics, ..) => {
903                if {
    {
            'done:
                {
                for i in attrs {
                    #[allow(unused_imports)]
                    use ::rustc_attr_ir::AttributeKind::*;
                    let i: &::rustc_attr_ir::Attribute = i;
                    match i {
                        ::rustc_attr_ir::Attribute::Parsed(NoMangle(..)) => {
                            break 'done Some(());
                        }
                        ::rustc_attr_ir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }.is_some()
}find_attr!(attrs, NoMangle(..)) {
904                    let suggestion =
905                        if generics.params.is_empty() && generics.where_clause_span.is_empty() {
906                            // account for "pub const" (#45562)
907                            Some(it.span.until(ident.span))
908                        } else {
909                            None
910                        };
911
912                    // Const items do not refer to a particular location in memory, and therefore
913                    // don't have anything to attach a symbol to
914                    cx.emit_span_lint(
915                        NO_MANGLE_CONST_ITEMS,
916                        it.span,
917                        BuiltinConstNoMangle { suggestion },
918                    );
919                }
920            }
921            _ => {}
922        }
923    }
924
925    fn check_impl_item(&mut self, cx: &LateContext<'_>, it: &hir::ImplItem<'_>) {
926        let attrs = cx.tcx.hir_attrs(it.hir_id());
927        match it.kind {
928            hir::ImplItemKind::Fn { .. } => {
929                if let Some(attr_span) = {
    'done:
        {
        for i in attrs {
            #[allow(unused_imports)]
            use ::rustc_attr_ir::AttributeKind::*;
            let i: &::rustc_attr_ir::Attribute = i;
            match i {
                ::rustc_attr_ir::Attribute::Parsed(ExportName { span, .. }) =>
                    {
                    break 'done Some(*span);
                }
                ::rustc_attr_ir::Attribute::Unparsed(..) =>
                    {}
                    #[deny(unreachable_patterns)]
                    _ => {}
            }
        }
        None
    }
}find_attr!(attrs, ExportName {span, ..} => *span)
930                    .or_else(|| {
    'done:
        {
        for i in attrs {
            #[allow(unused_imports)]
            use ::rustc_attr_ir::AttributeKind::*;
            let i: &::rustc_attr_ir::Attribute = i;
            match i {
                ::rustc_attr_ir::Attribute::Parsed(NoMangle(span)) => {
                    break 'done Some(*span);
                }
                ::rustc_attr_ir::Attribute::Unparsed(..) =>
                    {}
                    #[deny(unreachable_patterns)]
                    _ => {}
            }
        }
        None
    }
}find_attr!(attrs, NoMangle(span) => *span))
931                {
932                    self.check_no_mangle_on_generic_fn(cx, attr_span, it.owner_id.def_id);
933                }
934            }
935            _ => {}
936        }
937    }
938}
939
940#[doc =
r" The `mutable_transmutes` lint catches transmuting from `&T` to `&mut"]
#[doc = r" T` because it is [undefined behavior]."]
#[doc = r""]
#[doc =
r" [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" unsafe {"]
#[doc = r"     let y = std::mem::transmute::<&i32, &mut i32>(&5);"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Certain assumptions are made about aliasing of data, and this transmute"]
#[doc =
r" violates those assumptions. Consider using [`UnsafeCell`] instead."]
#[doc = r""]
#[doc =
r" [`UnsafeCell`]: https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html"]
static MUTABLE_TRANSMUTES: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "MUTABLE_TRANSMUTES",
            default_level: ::rustc_lint_defs::Deny,
            desc: "transmuting &T to &mut T is undefined behavior, even if the reference is unused",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
941    /// The `mutable_transmutes` lint catches transmuting from `&T` to `&mut
942    /// T` because it is [undefined behavior].
943    ///
944    /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
945    ///
946    /// ### Example
947    ///
948    /// ```rust,compile_fail
949    /// unsafe {
950    ///     let y = std::mem::transmute::<&i32, &mut i32>(&5);
951    /// }
952    /// ```
953    ///
954    /// {{produces}}
955    ///
956    /// ### Explanation
957    ///
958    /// Certain assumptions are made about aliasing of data, and this transmute
959    /// violates those assumptions. Consider using [`UnsafeCell`] instead.
960    ///
961    /// [`UnsafeCell`]: https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html
962    MUTABLE_TRANSMUTES,
963    Deny,
964    "transmuting &T to &mut T is undefined behavior, even if the reference is unused"
965}
966
967pub struct MutableTransmutes;
#[automatically_derived]
impl ::core::marker::Copy for MutableTransmutes { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for MutableTransmutes { }
#[automatically_derived]
impl ::core::clone::Clone for MutableTransmutes {
    #[inline]
    fn clone(&self) -> MutableTransmutes { *self }
}
impl ::rustc_lint_defs::LintPass for MutableTransmutes {
    fn name(&self) -> &'static str { "MutableTransmutes" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MUTABLE_TRANSMUTES]))
    }
}
impl MutableTransmutes {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [MUTABLE_TRANSMUTES]))
    }
}declare_lint_pass!(MutableTransmutes => [MUTABLE_TRANSMUTES]);
968
969impl<'tcx> LateLintPass<'tcx> for MutableTransmutes {
970    fn check_expr(&mut self, cx: &LateContext<'_>, expr: &hir::Expr<'_>) {
971        if let Some((&ty::Ref(_, _, from_mutbl), &ty::Ref(_, _, to_mutbl))) =
972            get_transmute_from_to(cx, expr).map(|(ty1, ty2)| (ty1.kind(), ty2.kind()))
973        {
974            if from_mutbl < to_mutbl {
975                cx.emit_span_lint(MUTABLE_TRANSMUTES, expr.span, BuiltinMutablesTransmutes);
976            }
977        }
978
979        fn get_transmute_from_to<'tcx>(
980            cx: &LateContext<'tcx>,
981            expr: &hir::Expr<'_>,
982        ) -> Option<(Ty<'tcx>, Ty<'tcx>)> {
983            let hir::ExprKind::Path(ref qpath) = expr.kind else { return None };
984            let def = cx.qpath_res(qpath, expr.hir_id);
985            if let Res::Def(DefKind::Fn, did) = def {
986                if !def_id_is_transmute(cx, did) {
987                    return None;
988                }
989                let sig = cx.typeck_results().node_type(expr.hir_id).fn_sig(cx.tcx);
990                let from = sig.inputs().skip_binder()[0];
991                let to = sig.output().skip_binder();
992                return Some((from, to));
993            }
994            None
995        }
996
997        fn def_id_is_transmute(cx: &LateContext<'_>, def_id: DefId) -> bool {
998            cx.tcx.is_intrinsic(def_id, sym::transmute)
999        }
1000    }
1001}
1002
1003#[doc = r" The `unstable_features` lint detects uses of `#![feature]`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(unstable_features)]"]
#[doc = r" #![feature(test)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" In larger nightly-based projects which"]
#[doc = r""]
#[doc =
r" * consist of a multitude of crates where a subset of crates has to compile on"]
#[doc =
r"   stable either unconditionally or depending on a `cfg` flag to for example"]
#[doc = r"   allow stable users to depend on them,"]
#[doc =
r" * don't use nightly for experimental features but for, e.g., unstable options only,"]
#[doc = r""]
#[doc = r" this lint may come in handy to enforce policies of these kinds."]
static UNSTABLE_FEATURES: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "UNSTABLE_FEATURES",
            default_level: ::rustc_lint_defs::Allow,
            desc: "enabling unstable features",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1004    /// The `unstable_features` lint detects uses of `#![feature]`.
1005    ///
1006    /// ### Example
1007    ///
1008    /// ```rust,compile_fail
1009    /// #![deny(unstable_features)]
1010    /// #![feature(test)]
1011    /// ```
1012    ///
1013    /// {{produces}}
1014    ///
1015    /// ### Explanation
1016    ///
1017    /// In larger nightly-based projects which
1018    ///
1019    /// * consist of a multitude of crates where a subset of crates has to compile on
1020    ///   stable either unconditionally or depending on a `cfg` flag to for example
1021    ///   allow stable users to depend on them,
1022    /// * don't use nightly for experimental features but for, e.g., unstable options only,
1023    ///
1024    /// this lint may come in handy to enforce policies of these kinds.
1025    UNSTABLE_FEATURES,
1026    Allow,
1027    "enabling unstable features"
1028}
1029
1030#[doc = r" Forbids using the `#[feature(...)]` attribute"]
pub struct UnstableFeatures;
#[automatically_derived]
impl ::core::marker::Copy for UnstableFeatures { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for UnstableFeatures { }
#[automatically_derived]
impl ::core::clone::Clone for UnstableFeatures {
    #[inline]
    fn clone(&self) -> UnstableFeatures { *self }
}
impl ::rustc_lint_defs::LintPass for UnstableFeatures {
    fn name(&self) -> &'static str { "UnstableFeatures" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNSTABLE_FEATURES]))
    }
}
impl UnstableFeatures {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNSTABLE_FEATURES]))
    }
}declare_lint_pass!(
1031    /// Forbids using the `#[feature(...)]` attribute
1032    UnstableFeatures => [UNSTABLE_FEATURES]
1033);
1034
1035impl<'tcx> LateLintPass<'tcx> for UnstableFeatures {
1036    fn check_attributes(&mut self, cx: &LateContext<'_>, attrs: &[hir::Attribute]) {
1037        if let Some(features) = {
    'done:
        {
        for i in attrs {
            #[allow(unused_imports)]
            use ::rustc_attr_ir::AttributeKind::*;
            let i: &::rustc_attr_ir::Attribute = i;
            match i {
                ::rustc_attr_ir::Attribute::Parsed(Feature(features, _)) => {
                    break 'done Some(features);
                }
                ::rustc_attr_ir::Attribute::Unparsed(..) =>
                    {}
                    #[deny(unreachable_patterns)]
                    _ => {}
            }
        }
        None
    }
}find_attr!(attrs, Feature(features, _) => features) {
1038            for feature in features {
1039                cx.emit_span_lint(UNSTABLE_FEATURES, feature.span, BuiltinUnstableFeatures);
1040            }
1041        }
1042    }
1043}
1044
1045#[doc = r" The `ungated_async_fn_track_caller` lint warns when the"]
#[doc = r" `#[track_caller]` attribute is used on an async function"]
#[doc = r" without enabling the corresponding unstable feature flag."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #[track_caller]"]
#[doc = r" async fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" The attribute must be used in conjunction with the"]
#[doc =
r" [`async_fn_track_caller` feature flag]. Otherwise, the `#[track_caller]`"]
#[doc = r" annotation will function as a no-op."]
#[doc = r""]
#[doc =
r" [`async_fn_track_caller` feature flag]: https://doc.rust-lang.org/beta/unstable-book/language-features/async-fn-track-caller.html"]
static UNGATED_ASYNC_FN_TRACK_CALLER: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "UNGATED_ASYNC_FN_TRACK_CALLER",
            default_level: ::rustc_lint_defs::Warn,
            desc: "enabling track_caller on an async fn is a no-op unless the async_fn_track_caller feature is enabled",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1046    /// The `ungated_async_fn_track_caller` lint warns when the
1047    /// `#[track_caller]` attribute is used on an async function
1048    /// without enabling the corresponding unstable feature flag.
1049    ///
1050    /// ### Example
1051    ///
1052    /// ```rust
1053    /// #[track_caller]
1054    /// async fn foo() {}
1055    /// ```
1056    ///
1057    /// {{produces}}
1058    ///
1059    /// ### Explanation
1060    ///
1061    /// The attribute must be used in conjunction with the
1062    /// [`async_fn_track_caller` feature flag]. Otherwise, the `#[track_caller]`
1063    /// annotation will function as a no-op.
1064    ///
1065    /// [`async_fn_track_caller` feature flag]: https://doc.rust-lang.org/beta/unstable-book/language-features/async-fn-track-caller.html
1066    UNGATED_ASYNC_FN_TRACK_CALLER,
1067    Warn,
1068    "enabling track_caller on an async fn is a no-op unless the async_fn_track_caller feature is enabled"
1069}
1070
1071#[doc =
r" Explains corresponding feature flag must be enabled for the `#[track_caller]` attribute to"]
#[doc = r" do anything"]
pub struct UngatedAsyncFnTrackCaller;
#[automatically_derived]
impl ::core::marker::Copy for UngatedAsyncFnTrackCaller { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for UngatedAsyncFnTrackCaller { }
#[automatically_derived]
impl ::core::clone::Clone for UngatedAsyncFnTrackCaller {
    #[inline]
    fn clone(&self) -> UngatedAsyncFnTrackCaller { *self }
}
impl ::rustc_lint_defs::LintPass for UngatedAsyncFnTrackCaller {
    fn name(&self) -> &'static str { "UngatedAsyncFnTrackCaller" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNGATED_ASYNC_FN_TRACK_CALLER]))
    }
}
impl UngatedAsyncFnTrackCaller {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNGATED_ASYNC_FN_TRACK_CALLER]))
    }
}declare_lint_pass!(
1072    /// Explains corresponding feature flag must be enabled for the `#[track_caller]` attribute to
1073    /// do anything
1074    UngatedAsyncFnTrackCaller => [UNGATED_ASYNC_FN_TRACK_CALLER]
1075);
1076
1077impl<'tcx> LateLintPass<'tcx> for UngatedAsyncFnTrackCaller {
1078    fn check_fn(
1079        &mut self,
1080        cx: &LateContext<'_>,
1081        fn_kind: HirFnKind<'_>,
1082        _: &'tcx FnDecl<'_>,
1083        _: &'tcx Body<'_>,
1084        span: Span,
1085        def_id: LocalDefId,
1086    ) {
1087        if fn_kind.asyncness().is_async()
1088            && !cx.tcx.features().async_fn_track_caller()
1089            // Now, check if the function has the `#[track_caller]` attribute
1090            && let Some(attr_span) = {
    {
        'done:
            {
            for i in ::rustc_attr_ir::HasAttrs::get_attrs(def_id, &cx.tcx) {
                #[allow(unused_imports)]
                use ::rustc_attr_ir::AttributeKind::*;
                let i: &::rustc_attr_ir::Attribute = i;
                match i {
                    ::rustc_attr_ir::Attribute::Parsed(TrackCaller(span)) => {
                        break 'done Some(*span);
                    }
                    ::rustc_attr_ir::Attribute::Unparsed(..) =>
                        {}
                        #[deny(unreachable_patterns)]
                        _ => {}
                }
            }
            None
        }
    }
}find_attr!(cx.tcx, def_id, TrackCaller(span) => *span)
1091        {
1092            cx.emit_span_lint(
1093                UNGATED_ASYNC_FN_TRACK_CALLER,
1094                attr_span,
1095                BuiltinUngatedAsyncFnTrackCaller { label: span, session: &cx.tcx.sess },
1096            );
1097        }
1098    }
1099}
1100
1101#[doc =
r" The `unreachable_pub` lint triggers for `pub` items not reachable from other crates - that"]
#[doc =
r" means neither directly accessible, nor reexported (with `pub use`), nor leaked through"]
#[doc =
r" things like return types (which the [`unnameable_types`] lint can detect if desired)."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(unreachable_pub)]"]
#[doc = r" mod foo {"]
#[doc = r"     pub mod bar {"]
#[doc = r""]
#[doc = r"     }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The `pub` keyword both expresses an intent for an item to be publicly available, and also"]
#[doc =
r" signals to the compiler to make the item publicly accessible. The intent can only be"]
#[doc =
r" satisfied, however, if all items which contain this item are *also* publicly accessible."]
#[doc =
r" Thus, this lint serves to identify situations where the intent does not match the reality."]
#[doc = r""]
#[doc =
r" If you wish the item to be accessible elsewhere within the crate, but not outside it, the"]
#[doc =
r" `pub(crate)` visibility is recommended to be used instead. This more clearly expresses the"]
#[doc = r" intent that the item is only visible within its own crate."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it will trigger for a large amount of existing Rust code."#]
#[doc = r" Eventually it is desired for this to become warn-by-default."]
#[doc = r""]
#[doc = r" [`unnameable_types`]: #unnameable-types"]
pub static UNREACHABLE_PUB: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "UNREACHABLE_PUB",
            default_level: ::rustc_lint_defs::Allow,
            desc: "`pub` items not reachable from crate root",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1102    /// The `unreachable_pub` lint triggers for `pub` items not reachable from other crates - that
1103    /// means neither directly accessible, nor reexported (with `pub use`), nor leaked through
1104    /// things like return types (which the [`unnameable_types`] lint can detect if desired).
1105    ///
1106    /// ### Example
1107    ///
1108    /// ```rust,compile_fail
1109    /// #![deny(unreachable_pub)]
1110    /// mod foo {
1111    ///     pub mod bar {
1112    ///
1113    ///     }
1114    /// }
1115    /// ```
1116    ///
1117    /// {{produces}}
1118    ///
1119    /// ### Explanation
1120    ///
1121    /// The `pub` keyword both expresses an intent for an item to be publicly available, and also
1122    /// signals to the compiler to make the item publicly accessible. The intent can only be
1123    /// satisfied, however, if all items which contain this item are *also* publicly accessible.
1124    /// Thus, this lint serves to identify situations where the intent does not match the reality.
1125    ///
1126    /// If you wish the item to be accessible elsewhere within the crate, but not outside it, the
1127    /// `pub(crate)` visibility is recommended to be used instead. This more clearly expresses the
1128    /// intent that the item is only visible within its own crate.
1129    ///
1130    /// This lint is "allow" by default because it will trigger for a large amount of existing Rust code.
1131    /// Eventually it is desired for this to become warn-by-default.
1132    ///
1133    /// [`unnameable_types`]: #unnameable-types
1134    pub UNREACHABLE_PUB,
1135    Allow,
1136    "`pub` items not reachable from crate root"
1137}
1138
1139#[doc =
r" Lint for items marked `pub` that aren't reachable from other crates."]
pub struct UnreachablePub;
#[automatically_derived]
impl ::core::marker::Copy for UnreachablePub { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for UnreachablePub { }
#[automatically_derived]
impl ::core::clone::Clone for UnreachablePub {
    #[inline]
    fn clone(&self) -> UnreachablePub { *self }
}
impl ::rustc_lint_defs::LintPass for UnreachablePub {
    fn name(&self) -> &'static str { "UnreachablePub" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNREACHABLE_PUB]))
    }
}
impl UnreachablePub {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [UNREACHABLE_PUB]))
    }
}declare_lint_pass!(
1140    /// Lint for items marked `pub` that aren't reachable from other crates.
1141    UnreachablePub => [UNREACHABLE_PUB]
1142);
1143
1144impl UnreachablePub {
1145    fn perform_lint(
1146        &self,
1147        cx: &LateContext<'_>,
1148        what: &str,
1149        def_id: LocalDefId,
1150        vis_span: Span,
1151        exportable: bool,
1152    ) {
1153        let mut applicability = Applicability::MachineApplicable;
1154        if cx.tcx.visibility(def_id).is_public() && !cx.effective_visibilities.is_reachable(def_id)
1155        {
1156            // prefer suggesting `pub(super)` instead of `pub(crate)` when possible,
1157            // except when `pub(super) == pub(crate)`
1158            let new_vis = if let Some(ty::Visibility::Restricted(restricted_did)) =
1159                cx.effective_visibilities.effective_vis(def_id).map(|effective_vis| {
1160                    effective_vis.at_level(rustc_middle::middle::privacy::Level::Reachable)
1161                })
1162                && let parent_parent = cx
1163                    .tcx
1164                    .parent_module_from_def_id(cx.tcx.parent_module_from_def_id(def_id).into())
1165                && *restricted_did == parent_parent
1166                && !restricted_did.to_def_id().is_crate_root()
1167            {
1168                "pub(super)"
1169            } else {
1170                "pub(crate)"
1171            };
1172
1173            if vis_span.from_expansion() {
1174                applicability = Applicability::MaybeIncorrect;
1175            }
1176            let def_span = cx.tcx.def_span(def_id);
1177            cx.emit_span_lint(
1178                UNREACHABLE_PUB,
1179                def_span,
1180                BuiltinUnreachablePub {
1181                    what,
1182                    new_vis,
1183                    suggestion: (vis_span, applicability),
1184                    help: exportable,
1185                },
1186            );
1187        }
1188    }
1189}
1190
1191impl<'tcx> LateLintPass<'tcx> for UnreachablePub {
1192    fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
1193        // Do not warn for fake `use` statements.
1194        if let hir::ItemKind::Use(_, hir::UseKind::ListStem) = &item.kind {
1195            return;
1196        }
1197        self.perform_lint(cx, "item", item.owner_id.def_id, item.vis_span, true);
1198    }
1199
1200    fn check_foreign_item(&mut self, cx: &LateContext<'_>, foreign_item: &hir::ForeignItem<'tcx>) {
1201        self.perform_lint(cx, "item", foreign_item.owner_id.def_id, foreign_item.vis_span, true);
1202    }
1203
1204    fn check_field_def(&mut self, _cx: &LateContext<'_>, _field: &hir::FieldDef<'_>) {
1205        // - If an ADT definition is reported then we don't need to check fields
1206        //   (as it would add unnecessary complexity to the source code, the struct
1207        //   definition is in the immediate proximity to give the "real" visibility).
1208        // - If an ADT is not reported because it's not `pub` - we don't need to
1209        //   check fields.
1210        // - If an ADT is not reported because it's reachable - we also don't need
1211        //   to check fields because then they are reachable by construction if they
1212        //   are pub.
1213        //
1214        // Therefore in no case we check the fields.
1215        //
1216        // cf. https://github.com/rust-lang/rust/pull/126013#issuecomment-2152839205
1217        // cf. https://github.com/rust-lang/rust/pull/126040#issuecomment-2152944506
1218    }
1219
1220    fn check_impl_item(&mut self, cx: &LateContext<'_>, impl_item: &hir::ImplItem<'_>) {
1221        if let ImplItemImplKind::Inherent { vis_span } = impl_item.impl_kind {
1222            self.perform_lint(cx, "item", impl_item.owner_id.def_id, vis_span, false);
1223        }
1224    }
1225}
1226
1227#[doc = r" The `type_alias_bounds` lint detects bounds in type aliases."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" type SendVec<T: Send> = Vec<T>;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Trait and lifetime bounds on generic parameters and in where clauses of"]
#[doc =
r" type aliases are not checked at usage sites of the type alias. Moreover,"]
#[doc =
r" they are not thoroughly checked for correctness at their definition site"]
#[doc = r" either similar to the aliased type."]
#[doc = r""]
#[doc =
r" This is a known limitation of the type checker that may be lifted in a"]
#[doc =
r" future edition. Permitting such bounds in light of this was unintentional."]
#[doc = r""]
#[doc =
r" While these bounds may have secondary effects such as enabling the use of"]
#[doc =
r#" "shorthand" associated type paths[^1] and affecting the default trait"#]
#[doc =
r" object lifetime[^2] of trait object types passed to the type alias, this"]
#[doc =
r" should not have been allowed until the aforementioned restrictions of the"]
#[doc = r" type checker have been lifted."]
#[doc = r""]
#[doc =
r" Using such bounds is highly discouraged as they are actively misleading."]
#[doc = r""]
#[doc =
r" [^1]: I.e., paths of the form `T::Assoc` where `T` is a type parameter"]
#[doc =
r" bounded by trait `Trait` which defines an associated type called `Assoc`"]
#[doc =
r" as opposed to a fully qualified path of the form `<T as Trait>::Assoc`."]
#[doc =
r" [^2]: <https://doc.rust-lang.org/reference/lifetime-elision.html#default-trait-object-lifetimes>"]
static TYPE_ALIAS_BOUNDS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "TYPE_ALIAS_BOUNDS",
            default_level: ::rustc_lint_defs::Warn,
            desc: "bounds in type aliases are not enforced",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1228    /// The `type_alias_bounds` lint detects bounds in type aliases.
1229    ///
1230    /// ### Example
1231    ///
1232    /// ```rust
1233    /// type SendVec<T: Send> = Vec<T>;
1234    /// ```
1235    ///
1236    /// {{produces}}
1237    ///
1238    /// ### Explanation
1239    ///
1240    /// Trait and lifetime bounds on generic parameters and in where clauses of
1241    /// type aliases are not checked at usage sites of the type alias. Moreover,
1242    /// they are not thoroughly checked for correctness at their definition site
1243    /// either similar to the aliased type.
1244    ///
1245    /// This is a known limitation of the type checker that may be lifted in a
1246    /// future edition. Permitting such bounds in light of this was unintentional.
1247    ///
1248    /// While these bounds may have secondary effects such as enabling the use of
1249    /// "shorthand" associated type paths[^1] and affecting the default trait
1250    /// object lifetime[^2] of trait object types passed to the type alias, this
1251    /// should not have been allowed until the aforementioned restrictions of the
1252    /// type checker have been lifted.
1253    ///
1254    /// Using such bounds is highly discouraged as they are actively misleading.
1255    ///
1256    /// [^1]: I.e., paths of the form `T::Assoc` where `T` is a type parameter
1257    /// bounded by trait `Trait` which defines an associated type called `Assoc`
1258    /// as opposed to a fully qualified path of the form `<T as Trait>::Assoc`.
1259    /// [^2]: <https://doc.rust-lang.org/reference/lifetime-elision.html#default-trait-object-lifetimes>
1260    TYPE_ALIAS_BOUNDS,
1261    Warn,
1262    "bounds in type aliases are not enforced"
1263}
1264
1265pub struct TypeAliasBounds;
#[automatically_derived]
impl ::core::marker::Copy for TypeAliasBounds { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TypeAliasBounds { }
#[automatically_derived]
impl ::core::clone::Clone for TypeAliasBounds {
    #[inline]
    fn clone(&self) -> TypeAliasBounds { *self }
}
impl ::rustc_lint_defs::LintPass for TypeAliasBounds {
    fn name(&self) -> &'static str { "TypeAliasBounds" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [TYPE_ALIAS_BOUNDS]))
    }
}
impl TypeAliasBounds {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [TYPE_ALIAS_BOUNDS]))
    }
}declare_lint_pass!(TypeAliasBounds => [TYPE_ALIAS_BOUNDS]);
1266
1267impl TypeAliasBounds {
1268    pub(crate) fn affects_object_lifetime_defaults(pred: &hir::WherePredicate<'_>) -> bool {
1269        // Bounds of the form `T: 'a` with `T` type param affect object lifetime defaults.
1270        if let hir::WherePredicateKind::BoundPredicate(pred) = pred.kind
1271            && pred.bounds.iter().any(|bound| #[allow(non_exhaustive_omitted_patterns)] match bound {
    hir::GenericBound::Outlives(_) => true,
    _ => false,
}matches!(bound, hir::GenericBound::Outlives(_)))
1272            && pred.bound_generic_params.is_empty() // indeed, even if absent from the RHS
1273            && pred.bounded_ty.as_generic_param().is_some()
1274        {
1275            return true;
1276        }
1277        false
1278    }
1279}
1280
1281impl<'tcx> LateLintPass<'tcx> for TypeAliasBounds {
1282    fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
1283        let hir::ItemKind::TyAlias(_, generics, hir_ty) = item.kind else { return };
1284
1285        // There must not be a where clause.
1286        if generics.predicates.is_empty() {
1287            return;
1288        }
1289
1290        // Bounds of checked type aliases and TAITs are respected.
1291        if cx.tcx.type_alias_is_checked(item.owner_id) {
1292            return;
1293        }
1294
1295        // FIXME(generic_const_exprs): Revisit this before stabilization.
1296        // See also `tests/ui/const-generics/generic_const_exprs/type-alias-bounds.rs`.
1297        let ty = cx.tcx.type_of(item.owner_id).instantiate_identity().skip_norm_wip();
1298        if ty.has_type_flags(ty::TypeFlags::HAS_CONST_ALIAS)
1299            && cx.tcx.features().generic_const_exprs()
1300        {
1301            return;
1302        }
1303
1304        // NOTE(inherent_associated_types): While we currently do take some bounds in type
1305        // aliases into consideration during IAT *selection*, we don't perform full use+def
1306        // site wfchecking for such type aliases. Therefore TAB should still trigger.
1307        // See also `tests/ui/associated-inherent-types/type-alias-bounds.rs`.
1308
1309        let mut where_spans = Vec::new();
1310        let mut inline_spans = Vec::new();
1311        let mut inline_sugg = Vec::new();
1312
1313        for p in generics.predicates {
1314            let span = p.span;
1315            if p.kind.in_where_clause() {
1316                where_spans.push(span);
1317            } else {
1318                for b in p.kind.bounds() {
1319                    inline_spans.push(b.span());
1320                }
1321                inline_sugg.push((span, String::new()));
1322            }
1323        }
1324
1325        let mut ty = Some(hir_ty);
1326        let enable_feat_help = cx.tcx.sess.is_nightly_build();
1327
1328        if let [.., label_sp] = *where_spans {
1329            cx.emit_span_lint(
1330                TYPE_ALIAS_BOUNDS,
1331                where_spans,
1332                BuiltinTypeAliasBounds {
1333                    in_where_clause: true,
1334                    label: label_sp,
1335                    enable_feat_help,
1336                    suggestions: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [(generics.where_clause_span, String::new())]))vec![(generics.where_clause_span, String::new())],
1337                    preds: generics.predicates,
1338                    ty: ty.take(),
1339                },
1340            );
1341        }
1342        if let [.., label_sp] = *inline_spans {
1343            cx.emit_span_lint(
1344                TYPE_ALIAS_BOUNDS,
1345                inline_spans,
1346                BuiltinTypeAliasBounds {
1347                    in_where_clause: false,
1348                    label: label_sp,
1349                    enable_feat_help,
1350                    suggestions: inline_sugg,
1351                    preds: generics.predicates,
1352                    ty,
1353                },
1354            );
1355        }
1356    }
1357}
1358
1359pub(crate) struct ShorthandAssocTyCollector {
1360    pub(crate) qselves: Vec<Span>,
1361}
1362
1363impl hir::intravisit::Visitor<'_> for ShorthandAssocTyCollector {
1364    fn visit_qpath(&mut self, qpath: &hir::QPath<'_>, id: hir::HirId, _: Span) {
1365        // Look for "type-parameter shorthand-associated-types". I.e., paths of the
1366        // form `T::Assoc` with `T` type param. These are reliant on trait bounds.
1367        if let hir::QPath::TypeRelative(qself, _) = qpath
1368            && qself.as_generic_param().is_some()
1369        {
1370            self.qselves.push(qself.span);
1371        }
1372        hir::intravisit::walk_qpath(self, qpath, id)
1373    }
1374}
1375
1376#[doc =
r" The `trivial_bounds` lint detects trait bounds that don't depend on"]
#[doc = r" any type parameters."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![feature(trivial_bounds)]"]
#[doc = r" pub struct A where i32: Copy;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Usually you would not write a trait bound that you know is always"]
#[doc =
r" true, or never true. However, when using macros, the macro may not"]
#[doc =
r" know whether or not the constraint would hold or not at the time when"]
#[doc =
r" generating the code. Currently, the compiler does not alert you if the"]
#[doc =
r" constraint is always true, and generates an error if it is never true."]
#[doc = r" The `trivial_bounds` feature changes this to be a warning in both"]
#[doc =
r" cases, giving macros more freedom and flexibility to generate code,"]
#[doc = r" while still providing a signal when writing non-macro code that"]
#[doc = r" something is amiss."]
#[doc = r""]
#[doc = r" See [RFC 2056] for more details. This feature is currently only"]
#[doc = r" available on the nightly channel, see [tracking issue #48214]."]
#[doc = r""]
#[doc =
r" [RFC 2056]: https://github.com/rust-lang/rfcs/blob/master/text/2056-allow-trivial-where-clause-constraints.md"]
#[doc =
r" [tracking issue #48214]: https://github.com/rust-lang/rust/issues/48214"]
static TRIVIAL_BOUNDS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "TRIVIAL_BOUNDS",
            default_level: ::rustc_lint_defs::Warn,
            desc: "these bounds don't depend on an type parameters",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1377    /// The `trivial_bounds` lint detects trait bounds that don't depend on
1378    /// any type parameters.
1379    ///
1380    /// ### Example
1381    ///
1382    /// ```rust
1383    /// #![feature(trivial_bounds)]
1384    /// pub struct A where i32: Copy;
1385    /// ```
1386    ///
1387    /// {{produces}}
1388    ///
1389    /// ### Explanation
1390    ///
1391    /// Usually you would not write a trait bound that you know is always
1392    /// true, or never true. However, when using macros, the macro may not
1393    /// know whether or not the constraint would hold or not at the time when
1394    /// generating the code. Currently, the compiler does not alert you if the
1395    /// constraint is always true, and generates an error if it is never true.
1396    /// The `trivial_bounds` feature changes this to be a warning in both
1397    /// cases, giving macros more freedom and flexibility to generate code,
1398    /// while still providing a signal when writing non-macro code that
1399    /// something is amiss.
1400    ///
1401    /// See [RFC 2056] for more details. This feature is currently only
1402    /// available on the nightly channel, see [tracking issue #48214].
1403    ///
1404    /// [RFC 2056]: https://github.com/rust-lang/rfcs/blob/master/text/2056-allow-trivial-where-clause-constraints.md
1405    /// [tracking issue #48214]: https://github.com/rust-lang/rust/issues/48214
1406    TRIVIAL_BOUNDS,
1407    Warn,
1408    "these bounds don't depend on an type parameters"
1409}
1410
1411#[doc =
r" Lint for trait and lifetime bounds that don't depend on type parameters"]
#[doc = r" which either do nothing, or stop the item from being used."]
pub struct TrivialConstraints;
#[automatically_derived]
impl ::core::marker::Copy for TrivialConstraints { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TrivialConstraints { }
#[automatically_derived]
impl ::core::clone::Clone for TrivialConstraints {
    #[inline]
    fn clone(&self) -> TrivialConstraints { *self }
}
impl ::rustc_lint_defs::LintPass for TrivialConstraints {
    fn name(&self) -> &'static str { "TrivialConstraints" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [TRIVIAL_BOUNDS]))
    }
}
impl TrivialConstraints {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [TRIVIAL_BOUNDS]))
    }
}declare_lint_pass!(
1412    /// Lint for trait and lifetime bounds that don't depend on type parameters
1413    /// which either do nothing, or stop the item from being used.
1414    TrivialConstraints => [TRIVIAL_BOUNDS]
1415);
1416
1417impl<'tcx> LateLintPass<'tcx> for TrivialConstraints {
1418    fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'tcx>) {
1419        use rustc_middle::ty::ClauseKind;
1420
1421        if cx.tcx.features().trivial_bounds() {
1422            let gen_clauses = cx.tcx.clauses_of(item.owner_id);
1423            for &(clause, span) in gen_clauses.clauses {
1424                let clause_kind_name = match clause.kind().skip_binder() {
1425                    ClauseKind::Trait(..) => "trait",
1426                    ClauseKind::TypeOutlives(..) | ClauseKind::RegionOutlives(..) => "lifetime",
1427
1428                    ClauseKind::UnstableFeature(_)
1429                    // `ConstArgHasType` is never global as `ct` is always a param
1430                    | ClauseKind::ConstArgHasType(..)
1431                    // Ignore projections, as they can only be global
1432                    // if the trait bound is global
1433                    | ClauseKind::Projection(..)
1434                    // Ignore bounds that a user can't type
1435                    | ClauseKind::WellFormed(..)
1436                    // FIXME(generic_const_exprs): `ConstEvaluatable` can be written
1437                    | ClauseKind::ConstEvaluatable(..)
1438                    // Users don't write this directly, only via another trait ref.
1439                    | ty::ClauseKind::HostEffect(..) => continue,
1440                };
1441                if clause.is_global() {
1442                    cx.emit_span_lint(
1443                        TRIVIAL_BOUNDS,
1444                        span,
1445                        BuiltinTrivialBounds { clause_kind_name, clause },
1446                    );
1447                }
1448            }
1449        }
1450    }
1451}
1452
1453#[doc =
r" The `double_negations` lint detects expressions of the form `--x`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" fn main() {"]
#[doc = r"     let x = 1;"]
#[doc = r"     let _b = --x;"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Negating something twice is usually the same as not negating it at all."]
#[doc =
r" However, a double negation in Rust can easily be confused with the"]
#[doc =
r" prefix decrement operator that exists in many languages derived from C."]
#[doc = r" Use `-(-x)` if you really wanted to negate the value twice."]
#[doc = r""]
#[doc = r" To decrement a value, use `x -= 1` instead."]
pub static DOUBLE_NEGATIONS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "DOUBLE_NEGATIONS",
            default_level: ::rustc_lint_defs::Warn,
            desc: "detects expressions of the form `--x`",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1454    /// The `double_negations` lint detects expressions of the form `--x`.
1455    ///
1456    /// ### Example
1457    ///
1458    /// ```rust
1459    /// fn main() {
1460    ///     let x = 1;
1461    ///     let _b = --x;
1462    /// }
1463    /// ```
1464    ///
1465    /// {{produces}}
1466    ///
1467    /// ### Explanation
1468    ///
1469    /// Negating something twice is usually the same as not negating it at all.
1470    /// However, a double negation in Rust can easily be confused with the
1471    /// prefix decrement operator that exists in many languages derived from C.
1472    /// Use `-(-x)` if you really wanted to negate the value twice.
1473    ///
1474    /// To decrement a value, use `x -= 1` instead.
1475    pub DOUBLE_NEGATIONS,
1476    Warn,
1477    "detects expressions of the form `--x`"
1478}
1479
1480#[doc =
r" Lint for expressions of the form `--x` that can be confused with C's"]
#[doc = r" prefix decrement operator."]
pub struct DoubleNegations;
#[automatically_derived]
impl ::core::marker::Copy for DoubleNegations { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DoubleNegations { }
#[automatically_derived]
impl ::core::clone::Clone for DoubleNegations {
    #[inline]
    fn clone(&self) -> DoubleNegations { *self }
}
impl ::rustc_lint_defs::LintPass for DoubleNegations {
    fn name(&self) -> &'static str { "DoubleNegations" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DOUBLE_NEGATIONS]))
    }
}
impl DoubleNegations {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DOUBLE_NEGATIONS]))
    }
}declare_lint_pass!(
1481    /// Lint for expressions of the form `--x` that can be confused with C's
1482    /// prefix decrement operator.
1483    DoubleNegations => [DOUBLE_NEGATIONS]
1484);
1485
1486impl EarlyLintPass for DoubleNegations {
1487    #[inline]
1488    fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr) {
1489        // only lint on the innermost `--` in a chain of `-` operators,
1490        // even if there are 3 or more negations
1491        if let ExprKind::Unary(UnOp::Neg, ref inner) = expr.kind
1492            && let ExprKind::Unary(UnOp::Neg, ref inner2) = inner.kind
1493            && !#[allow(non_exhaustive_omitted_patterns)] match inner2.kind {
    ExprKind::Unary(UnOp::Neg, _) => true,
    _ => false,
}matches!(inner2.kind, ExprKind::Unary(UnOp::Neg, _))
1494            // Don't lint if this jumps macro expansion boundary (Issue #143980)
1495            && expr.span.eq_ctxt(inner.span)
1496        {
1497            cx.emit_span_lint(
1498                DOUBLE_NEGATIONS,
1499                expr.span,
1500                BuiltinDoubleNegations {
1501                    add_parens: BuiltinDoubleNegationsAddParens {
1502                        start_span: inner.span.shrink_to_lo(),
1503                        end_span: inner.span.shrink_to_hi(),
1504                    },
1505                },
1506            );
1507        }
1508    }
1509}
1510
1511pub mod soft {
1512    use super::*;
1513
1514    pub fn lint_vec() -> crate::LintVec {
1515        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [WHILE_TRUE, NON_SHORTHAND_FIELD_PATTERNS, UNSAFE_CODE, MISSING_DOCS,
                MISSING_COPY_IMPLEMENTATIONS, MISSING_DEBUG_IMPLEMENTATIONS,
                ANONYMOUS_PARAMETERS, UNUSED_DOC_COMMENTS,
                NO_MANGLE_CONST_ITEMS, MUTABLE_TRANSMUTES, UNSTABLE_FEATURES,
                UNREACHABLE_PUB, TYPE_ALIAS_BOUNDS, TRIVIAL_BOUNDS,
                DOUBLE_NEGATIONS]))vec![
1516            WHILE_TRUE,
1517            NON_SHORTHAND_FIELD_PATTERNS,
1518            UNSAFE_CODE,
1519            MISSING_DOCS,
1520            MISSING_COPY_IMPLEMENTATIONS,
1521            MISSING_DEBUG_IMPLEMENTATIONS,
1522            ANONYMOUS_PARAMETERS,
1523            UNUSED_DOC_COMMENTS,
1524            NO_MANGLE_CONST_ITEMS,
1525            MUTABLE_TRANSMUTES,
1526            UNSTABLE_FEATURES,
1527            UNREACHABLE_PUB,
1528            TYPE_ALIAS_BOUNDS,
1529            TRIVIAL_BOUNDS,
1530            DOUBLE_NEGATIONS,
1531        ]
1532    }
1533}
1534
1535#[doc =
r" The `ellipsis_inclusive_range_patterns` lint detects the [`...` range"]
#[doc = r" pattern], which is deprecated."]
#[doc = r""]
#[doc =
r" [`...` range pattern]: https://doc.rust-lang.org/reference/patterns.html#range-patterns"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2018"]
#[doc = r" let x = 123;"]
#[doc = r" match x {"]
#[doc = r"     0...100 => {}"]
#[doc = r"     _ => {}"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The `...` range pattern syntax was changed to `..=` to avoid potential"]
#[doc =
r" confusion with the [`..` range expression]. Use the new form instead."]
#[doc = r""]
#[doc =
r" [`..` range expression]: https://doc.rust-lang.org/reference/expressions/range-expr.html"]
pub static ELLIPSIS_INCLUSIVE_RANGE_PATTERNS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "ELLIPSIS_INCLUSIVE_RANGE_PATTERNS",
            default_level: ::rustc_lint_defs::Warn,
            desc: "`...` range patterns are deprecated",
            is_externally_loaded: false,
            future_incompatible: Some(::rustc_lint_defs::FutureIncompatibleInfo {
                    reason: ::rustc_lint_defs::FutureIncompatibilityReason::EditionError(::rustc_lint_defs::EditionFcw {
                            edition: rustc_span::edition::Edition::Edition2021,
                            page_slug: "warnings-promoted-to-error",
                        }),
                    ..::rustc_lint_defs::FutureIncompatibleInfo::default_fields_for_macro()
                }),
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1536    /// The `ellipsis_inclusive_range_patterns` lint detects the [`...` range
1537    /// pattern], which is deprecated.
1538    ///
1539    /// [`...` range pattern]: https://doc.rust-lang.org/reference/patterns.html#range-patterns
1540    ///
1541    /// ### Example
1542    ///
1543    /// ```rust,edition2018
1544    /// let x = 123;
1545    /// match x {
1546    ///     0...100 => {}
1547    ///     _ => {}
1548    /// }
1549    /// ```
1550    ///
1551    /// {{produces}}
1552    ///
1553    /// ### Explanation
1554    ///
1555    /// The `...` range pattern syntax was changed to `..=` to avoid potential
1556    /// confusion with the [`..` range expression]. Use the new form instead.
1557    ///
1558    /// [`..` range expression]: https://doc.rust-lang.org/reference/expressions/range-expr.html
1559    pub ELLIPSIS_INCLUSIVE_RANGE_PATTERNS,
1560    Warn,
1561    "`...` range patterns are deprecated",
1562    @future_incompatible = FutureIncompatibleInfo {
1563        reason: fcw!(EditionError 2021 "warnings-promoted-to-error"),
1564    };
1565}
1566
1567#[derive(#[automatically_derived]
impl ::core::default::Default for EllipsisInclusiveRangePatterns {
    #[inline]
    fn default() -> EllipsisInclusiveRangePatterns {
        EllipsisInclusiveRangePatterns {
            node_id: ::core::default::Default::default(),
        }
    }
}Default)]
1568pub struct EllipsisInclusiveRangePatterns {
1569    /// If `Some(_)`, suppress all subsequent pattern
1570    /// warnings for better diagnostics.
1571    node_id: Option<ast::NodeId>,
1572}
1573
1574impl ::rustc_lint_defs::LintPass for EllipsisInclusiveRangePatterns {
    fn name(&self) -> &'static str { "EllipsisInclusiveRangePatterns" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [ELLIPSIS_INCLUSIVE_RANGE_PATTERNS]))
    }
}
impl EllipsisInclusiveRangePatterns {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [ELLIPSIS_INCLUSIVE_RANGE_PATTERNS]))
    }
}impl_lint_pass!(EllipsisInclusiveRangePatterns => [ELLIPSIS_INCLUSIVE_RANGE_PATTERNS]);
1575
1576impl EarlyLintPass for EllipsisInclusiveRangePatterns {
1577    fn check_pat(&mut self, cx: &EarlyContext<'_>, pat: &ast::Pat) {
1578        if self.node_id.is_some() {
1579            // Don't recursively warn about patterns inside range endpoints.
1580            return;
1581        }
1582
1583        use self::ast::PatKind;
1584        use self::ast::RangeSyntax::DotDotDot;
1585
1586        /// If `pat` is a `...` pattern, return the start and end of the range, as well as the span
1587        /// corresponding to the ellipsis.
1588        fn matches_ellipsis_pat(pat: &ast::Pat) -> Option<(Option<&Expr>, &Expr, Span)> {
1589            match &pat.kind {
1590                PatKind::Range(
1591                    a,
1592                    Some(b),
1593                    Spanned { span, node: RangeEnd::Included(DotDotDot) },
1594                ) => Some((a.as_deref(), b, *span)),
1595                _ => None,
1596            }
1597        }
1598
1599        let (parentheses, endpoints) = match &pat.kind {
1600            PatKind::Ref(subpat, _, _) => (true, matches_ellipsis_pat(subpat)),
1601            _ => (false, matches_ellipsis_pat(pat)),
1602        };
1603
1604        if let Some((start, end, join)) = endpoints {
1605            if parentheses {
1606                self.node_id = Some(pat.id);
1607                let end = expr_to_string(end);
1608                let replace = match start {
1609                    Some(start) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("&({0}..={1})",
                expr_to_string(start), end))
    })format!("&({}..={})", expr_to_string(start), end),
1610                    None => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("&(..={0})", end))
    })format!("&(..={end})"),
1611                };
1612                if join.edition() >= Edition::Edition2021 {
1613                    cx.sess().dcx().emit_err(BuiltinEllipsisInclusiveRangePatterns {
1614                        span: pat.span,
1615                        suggestion: pat.span,
1616                        replace,
1617                    });
1618                } else {
1619                    cx.emit_span_lint(
1620                        ELLIPSIS_INCLUSIVE_RANGE_PATTERNS,
1621                        pat.span,
1622                        BuiltinEllipsisInclusiveRangePatternsLint::Parenthesise {
1623                            suggestion: pat.span,
1624                            replace,
1625                        },
1626                    );
1627                }
1628            } else {
1629                let replace = "..=";
1630                if join.edition() >= Edition::Edition2021 {
1631                    cx.sess().dcx().emit_err(BuiltinEllipsisInclusiveRangePatterns {
1632                        span: pat.span,
1633                        suggestion: join,
1634                        replace: replace.to_string(),
1635                    });
1636                } else {
1637                    cx.emit_span_lint(
1638                        ELLIPSIS_INCLUSIVE_RANGE_PATTERNS,
1639                        join,
1640                        BuiltinEllipsisInclusiveRangePatternsLint::NonParenthesise {
1641                            suggestion: join,
1642                        },
1643                    );
1644                }
1645            };
1646        }
1647    }
1648
1649    fn check_pat_post(&mut self, _cx: &EarlyContext<'_>, pat: &ast::Pat) {
1650        if let Some(node_id) = self.node_id {
1651            if pat.id == node_id {
1652                self.node_id = None
1653            }
1654        }
1655    }
1656}
1657
1658#[doc =
r" The `keyword_idents_2018` lint detects edition keywords being used as an"]
#[doc = r" identifier."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2015,compile_fail"]
#[doc = r" #![deny(keyword_idents_2018)]"]
#[doc = r" // edition 2015"]
#[doc = r" fn dyn() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Rust [editions] allow the language to evolve without breaking"]
#[doc =
r" backwards compatibility. This lint catches code that uses new keywords"]
#[doc =
r" that are added to the language that are used as identifiers (such as a"]
#[doc =
r" variable name, function name, etc.). If you switch the compiler to a"]
#[doc =
r" new edition without updating the code, then it will fail to compile if"]
#[doc = r" you are using a new keyword as an identifier."]
#[doc = r""]
#[doc =
r" You can manually change the identifiers to a non-keyword, or use a"]
#[doc =
r" [raw identifier], for example `r#dyn`, to transition to a new edition."]
#[doc = r""]
#[doc =
r#" This lint solves the problem automatically. It is "allow" by default"#]
#[doc =
r" because the code is perfectly valid in older editions. The [`cargo"]
#[doc =
r#" fix`] tool with the `--edition` flag will switch this lint to "warn""#]
#[doc =
r" and automatically apply the suggested fix from the compiler (which is"]
#[doc =
r" to use a raw identifier). This provides a completely automated way to"]
#[doc = r" update old code for a new edition."]
#[doc = r""]
#[doc = r" [editions]: https://doc.rust-lang.org/edition-guide/"]
#[doc =
r" [raw identifier]: https://doc.rust-lang.org/reference/identifiers.html"]
#[doc =
r" [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html"]
pub static KEYWORD_IDENTS_2018: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "KEYWORD_IDENTS_2018",
            default_level: ::rustc_lint_defs::Allow,
            desc: "detects edition keywords being used as an identifier",
            is_externally_loaded: false,
            future_incompatible: Some(::rustc_lint_defs::FutureIncompatibleInfo {
                    reason: ::rustc_lint_defs::FutureIncompatibilityReason::EditionError(::rustc_lint_defs::EditionFcw {
                            edition: rustc_span::edition::Edition::Edition2018,
                            page_slug: "new-keywords",
                        }),
                    ..::rustc_lint_defs::FutureIncompatibleInfo::default_fields_for_macro()
                }),
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1659    /// The `keyword_idents_2018` lint detects edition keywords being used as an
1660    /// identifier.
1661    ///
1662    /// ### Example
1663    ///
1664    /// ```rust,edition2015,compile_fail
1665    /// #![deny(keyword_idents_2018)]
1666    /// // edition 2015
1667    /// fn dyn() {}
1668    /// ```
1669    ///
1670    /// {{produces}}
1671    ///
1672    /// ### Explanation
1673    ///
1674    /// Rust [editions] allow the language to evolve without breaking
1675    /// backwards compatibility. This lint catches code that uses new keywords
1676    /// that are added to the language that are used as identifiers (such as a
1677    /// variable name, function name, etc.). If you switch the compiler to a
1678    /// new edition without updating the code, then it will fail to compile if
1679    /// you are using a new keyword as an identifier.
1680    ///
1681    /// You can manually change the identifiers to a non-keyword, or use a
1682    /// [raw identifier], for example `r#dyn`, to transition to a new edition.
1683    ///
1684    /// This lint solves the problem automatically. It is "allow" by default
1685    /// because the code is perfectly valid in older editions. The [`cargo
1686    /// fix`] tool with the `--edition` flag will switch this lint to "warn"
1687    /// and automatically apply the suggested fix from the compiler (which is
1688    /// to use a raw identifier). This provides a completely automated way to
1689    /// update old code for a new edition.
1690    ///
1691    /// [editions]: https://doc.rust-lang.org/edition-guide/
1692    /// [raw identifier]: https://doc.rust-lang.org/reference/identifiers.html
1693    /// [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html
1694    pub KEYWORD_IDENTS_2018,
1695    Allow,
1696    "detects edition keywords being used as an identifier",
1697    @future_incompatible = FutureIncompatibleInfo {
1698        reason: fcw!(EditionError 2018 "new-keywords"),
1699    };
1700}
1701
1702#[doc =
r" The `keyword_idents_2024` lint detects edition keywords being used as an"]
#[doc = r" identifier."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2015,compile_fail"]
#[doc = r" #![deny(keyword_idents_2024)]"]
#[doc = r" // edition 2015"]
#[doc = r" fn gen() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Rust [editions] allow the language to evolve without breaking"]
#[doc =
r" backwards compatibility. This lint catches code that uses new keywords"]
#[doc =
r" that are added to the language that are used as identifiers (such as a"]
#[doc =
r" variable name, function name, etc.). If you switch the compiler to a"]
#[doc =
r" new edition without updating the code, then it will fail to compile if"]
#[doc = r" you are using a new keyword as an identifier."]
#[doc = r""]
#[doc =
r" You can manually change the identifiers to a non-keyword, or use a"]
#[doc =
r" [raw identifier], for example `r#gen`, to transition to a new edition."]
#[doc = r""]
#[doc =
r#" This lint solves the problem automatically. It is "allow" by default"#]
#[doc =
r" because the code is perfectly valid in older editions. The [`cargo"]
#[doc =
r#" fix`] tool with the `--edition` flag will switch this lint to "warn""#]
#[doc =
r" and automatically apply the suggested fix from the compiler (which is"]
#[doc =
r" to use a raw identifier). This provides a completely automated way to"]
#[doc = r" update old code for a new edition."]
#[doc = r""]
#[doc = r" [editions]: https://doc.rust-lang.org/edition-guide/"]
#[doc =
r" [raw identifier]: https://doc.rust-lang.org/reference/identifiers.html"]
#[doc =
r" [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html"]
pub static KEYWORD_IDENTS_2024: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "KEYWORD_IDENTS_2024",
            default_level: ::rustc_lint_defs::Allow,
            desc: "detects edition keywords being used as an identifier",
            is_externally_loaded: false,
            future_incompatible: Some(::rustc_lint_defs::FutureIncompatibleInfo {
                    reason: ::rustc_lint_defs::FutureIncompatibilityReason::EditionError(::rustc_lint_defs::EditionFcw {
                            edition: rustc_span::edition::Edition::Edition2024,
                            page_slug: "gen-keyword",
                        }),
                    ..::rustc_lint_defs::FutureIncompatibleInfo::default_fields_for_macro()
                }),
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
1703    /// The `keyword_idents_2024` lint detects edition keywords being used as an
1704    /// identifier.
1705    ///
1706    /// ### Example
1707    ///
1708    /// ```rust,edition2015,compile_fail
1709    /// #![deny(keyword_idents_2024)]
1710    /// // edition 2015
1711    /// fn gen() {}
1712    /// ```
1713    ///
1714    /// {{produces}}
1715    ///
1716    /// ### Explanation
1717    ///
1718    /// Rust [editions] allow the language to evolve without breaking
1719    /// backwards compatibility. This lint catches code that uses new keywords
1720    /// that are added to the language that are used as identifiers (such as a
1721    /// variable name, function name, etc.). If you switch the compiler to a
1722    /// new edition without updating the code, then it will fail to compile if
1723    /// you are using a new keyword as an identifier.
1724    ///
1725    /// You can manually change the identifiers to a non-keyword, or use a
1726    /// [raw identifier], for example `r#gen`, to transition to a new edition.
1727    ///
1728    /// This lint solves the problem automatically. It is "allow" by default
1729    /// because the code is perfectly valid in older editions. The [`cargo
1730    /// fix`] tool with the `--edition` flag will switch this lint to "warn"
1731    /// and automatically apply the suggested fix from the compiler (which is
1732    /// to use a raw identifier). This provides a completely automated way to
1733    /// update old code for a new edition.
1734    ///
1735    /// [editions]: https://doc.rust-lang.org/edition-guide/
1736    /// [raw identifier]: https://doc.rust-lang.org/reference/identifiers.html
1737    /// [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html
1738    pub KEYWORD_IDENTS_2024,
1739    Allow,
1740    "detects edition keywords being used as an identifier",
1741    @future_incompatible = FutureIncompatibleInfo {
1742        reason: fcw!(EditionError 2024 "gen-keyword"),
1743    };
1744}
1745
1746#[doc = r" Check for uses of edition keywords used as an identifier."]
pub struct KeywordIdents;
#[automatically_derived]
impl ::core::marker::Copy for KeywordIdents { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for KeywordIdents { }
#[automatically_derived]
impl ::core::clone::Clone for KeywordIdents {
    #[inline]
    fn clone(&self) -> KeywordIdents { *self }
}
impl ::rustc_lint_defs::LintPass for KeywordIdents {
    fn name(&self) -> &'static str { "KeywordIdents" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [KEYWORD_IDENTS_2018, KEYWORD_IDENTS_2024]))
    }
}
impl KeywordIdents {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [KEYWORD_IDENTS_2018, KEYWORD_IDENTS_2024]))
    }
}declare_lint_pass!(
1747    /// Check for uses of edition keywords used as an identifier.
1748    KeywordIdents => [KEYWORD_IDENTS_2018, KEYWORD_IDENTS_2024]
1749);
1750
1751struct UnderMacro(bool);
1752
1753impl KeywordIdents {
1754    fn check_tokens(&mut self, cx: &EarlyContext<'_>, tokens: &TokenStream) {
1755        // Check if the preceding token is `$`, because we want to allow `$async`, etc.
1756        let mut prev_dollar = false;
1757        for tt in tokens.iter() {
1758            match tt {
1759                // Only report non-raw idents.
1760                TokenTree::Token(token, _) => {
1761                    if let Some((ident, token::IdentIsRaw::No)) = token.ident() {
1762                        if !prev_dollar {
1763                            self.check_ident_token(cx, UnderMacro(true), ident, "");
1764                        }
1765                    } else if let Some((ident, token::IdentIsRaw::No)) = token.lifetime() {
1766                        self.check_ident_token(
1767                            cx,
1768                            UnderMacro(true),
1769                            ident.without_first_quote(),
1770                            "'",
1771                        );
1772                    } else if token.kind == TokenKind::Dollar {
1773                        prev_dollar = true;
1774                        continue;
1775                    }
1776                }
1777                TokenTree::Delimited(.., tts) => self.check_tokens(cx, tts),
1778            }
1779            prev_dollar = false;
1780        }
1781    }
1782
1783    fn check_ident_token(
1784        &mut self,
1785        cx: &EarlyContext<'_>,
1786        UnderMacro(under_macro): UnderMacro,
1787        ident: Ident,
1788        prefix: &'static str,
1789    ) {
1790        let (lint, edition) = match ident.name {
1791            kw::Async | kw::Await | kw::Try => (KEYWORD_IDENTS_2018, Edition::Edition2018),
1792
1793            // rust-lang/rust#56327: Conservatively do not
1794            // attempt to report occurrences of `dyn` within
1795            // macro definitions or invocations, because `dyn`
1796            // can legitimately occur as a contextual keyword
1797            // in 2015 code denoting its 2018 meaning, and we
1798            // do not want rustfix to inject bugs into working
1799            // code by rewriting such occurrences.
1800            //
1801            // But if we see `dyn` outside of a macro, we know
1802            // its precise role in the parsed AST and thus are
1803            // assured this is truly an attempt to use it as
1804            // an identifier.
1805            kw::Dyn if !under_macro => (KEYWORD_IDENTS_2018, Edition::Edition2018),
1806
1807            kw::Gen => (KEYWORD_IDENTS_2024, Edition::Edition2024),
1808
1809            _ => return,
1810        };
1811
1812        // Don't lint `r#foo`.
1813        if ident.span.edition() >= edition
1814            || cx.sess().psess.raw_identifier_spans.contains(ident.span)
1815        {
1816            return;
1817        }
1818
1819        cx.emit_span_lint(
1820            lint,
1821            ident.span,
1822            BuiltinKeywordIdents { kw: ident, next: edition, suggestion: ident.span, prefix },
1823        );
1824    }
1825}
1826
1827impl EarlyLintPass for KeywordIdents {
1828    fn check_mac_def(&mut self, cx: &EarlyContext<'_>, mac_def: &ast::MacroDef) {
1829        self.check_tokens(cx, &mac_def.body.tokens);
1830    }
1831    fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &ast::MacCall) {
1832        self.check_tokens(cx, &mac.args.tokens);
1833    }
1834    fn check_ident(&mut self, cx: &EarlyContext<'_>, ident: &Ident) {
1835        if ident.name.as_str().starts_with('\'') {
1836            self.check_ident_token(cx, UnderMacro(false), ident.without_first_quote(), "'");
1837        } else {
1838            self.check_ident_token(cx, UnderMacro(false), *ident, "");
1839        }
1840    }
1841}
1842
1843pub struct ExplicitOutlivesRequirements;
#[automatically_derived]
impl ::core::marker::Copy for ExplicitOutlivesRequirements { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ExplicitOutlivesRequirements { }
#[automatically_derived]
impl ::core::clone::Clone for ExplicitOutlivesRequirements {
    #[inline]
    fn clone(&self) -> ExplicitOutlivesRequirements { *self }
}
impl ::rustc_lint_defs::LintPass for ExplicitOutlivesRequirements {
    fn name(&self) -> &'static str { "ExplicitOutlivesRequirements" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [EXPLICIT_OUTLIVES_REQUIREMENTS]))
    }
}
impl ExplicitOutlivesRequirements {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [EXPLICIT_OUTLIVES_REQUIREMENTS]))
    }
}declare_lint_pass!(ExplicitOutlivesRequirements => [EXPLICIT_OUTLIVES_REQUIREMENTS]);
1844
1845impl ExplicitOutlivesRequirements {
1846    fn lifetimes_outliving_lifetime<'tcx>(
1847        tcx: TyCtxt<'tcx>,
1848        inferred_outlives: impl Iterator<Item = &'tcx (ty::Clause<'tcx>, Span)>,
1849        item: LocalDefId,
1850        lifetime: LocalDefId,
1851    ) -> Vec<ty::Region<'tcx>> {
1852        let item_generics = tcx.generics_of(item);
1853
1854        inferred_outlives
1855            .filter_map(|(clause, _)| match clause.kind().skip_binder() {
1856                ty::ClauseKind::RegionOutlives(ty::OutlivesClause(a, b)) => match a.kind() {
1857                    ty::ReEarlyParam(ebr)
1858                        if item_generics.region_param(ebr, tcx).def_id == lifetime.to_def_id() =>
1859                    {
1860                        Some(b)
1861                    }
1862                    _ => None,
1863                },
1864                _ => None,
1865            })
1866            .collect()
1867    }
1868
1869    fn lifetimes_outliving_type<'tcx>(
1870        inferred_outlives: impl Iterator<Item = &'tcx (ty::Clause<'tcx>, Span)>,
1871        index: u32,
1872    ) -> Vec<ty::Region<'tcx>> {
1873        inferred_outlives
1874            .filter_map(|(clause, _)| match clause.kind().skip_binder() {
1875                ty::ClauseKind::TypeOutlives(ty::OutlivesClause(a, b)) => {
1876                    a.is_param(index).then_some(b)
1877                }
1878                _ => None,
1879            })
1880            .collect()
1881    }
1882
1883    fn collect_outlives_bound_spans<'tcx>(
1884        &self,
1885        tcx: TyCtxt<'tcx>,
1886        bounds: &hir::GenericBounds<'_>,
1887        inferred_outlives: &[ty::Region<'tcx>],
1888        predicate_span: Span,
1889        item: DefId,
1890    ) -> Vec<(usize, Span)> {
1891        use rustc_middle::middle::resolve_bound_vars::ResolvedArg;
1892
1893        let item_generics = tcx.generics_of(item);
1894
1895        bounds
1896            .iter()
1897            .enumerate()
1898            .filter_map(|(i, bound)| {
1899                let hir::GenericBound::Outlives(lifetime) = bound else {
1900                    return None;
1901                };
1902
1903                let is_inferred = match tcx.named_bound_var(lifetime.hir_id) {
1904                    Some(ResolvedArg::EarlyBound(def_id)) => inferred_outlives
1905                        .iter()
1906                        .any(|r| #[allow(non_exhaustive_omitted_patterns)] match r.kind() {
    ty::ReEarlyParam(ebr) if
        { item_generics.region_param(ebr, tcx).def_id == def_id.to_def_id() }
        => true,
    _ => false,
}matches!(r.kind(), ty::ReEarlyParam(ebr) if { item_generics.region_param(ebr, tcx).def_id == def_id.to_def_id() })),
1907                    _ => false,
1908                };
1909
1910                if !is_inferred {
1911                    return None;
1912                }
1913
1914                let span = bound.span().find_ancestor_inside(predicate_span)?;
1915                if span.in_external_macro(tcx.sess.source_map()) {
1916                    return None;
1917                }
1918
1919                Some((i, span))
1920            })
1921            .collect()
1922    }
1923
1924    fn consolidate_outlives_bound_spans(
1925        &self,
1926        lo: Span,
1927        bounds: &hir::GenericBounds<'_>,
1928        bound_spans: Vec<(usize, Span)>,
1929    ) -> Vec<Span> {
1930        if bounds.is_empty() {
1931            return Vec::new();
1932        }
1933        if bound_spans.len() == bounds.len() {
1934            let (_, last_bound_span) = bound_spans[bound_spans.len() - 1];
1935            // If all bounds are inferable, we want to delete the colon, so
1936            // start from just after the parameter (span passed as argument)
1937            ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [lo.to(last_bound_span)]))vec![lo.to(last_bound_span)]
1938        } else {
1939            let mut merged = Vec::new();
1940            let mut last_merged_i = None;
1941
1942            let mut from_start = true;
1943            for (i, bound_span) in bound_spans {
1944                match last_merged_i {
1945                    // If the first bound is inferable, our span should also eat the leading `+`.
1946                    None if i == 0 => {
1947                        merged.push(bound_span.to(bounds[1].span().shrink_to_lo()));
1948                        last_merged_i = Some(0);
1949                    }
1950                    // If consecutive bounds are inferable, merge their spans
1951                    Some(h) if i == h + 1 => {
1952                        if let Some(tail) = merged.last_mut() {
1953                            // Also eat the trailing `+` if the first
1954                            // more-than-one bound is inferable
1955                            let to_span = if from_start && i < bounds.len() {
1956                                bounds[i + 1].span().shrink_to_lo()
1957                            } else {
1958                                bound_span
1959                            };
1960                            *tail = tail.to(to_span);
1961                            last_merged_i = Some(i);
1962                        } else {
1963                            ::rustc_middle::util::bug::bug_fmt(format_args!("another bound-span visited earlier"));bug!("another bound-span visited earlier");
1964                        }
1965                    }
1966                    _ => {
1967                        // When we find a non-inferable bound, subsequent inferable bounds
1968                        // won't be consecutive from the start (and we'll eat the leading
1969                        // `+` rather than the trailing one)
1970                        from_start = false;
1971                        merged.push(bounds[i - 1].span().shrink_to_hi().to(bound_span));
1972                        last_merged_i = Some(i);
1973                    }
1974                }
1975            }
1976            merged
1977        }
1978    }
1979}
1980
1981impl<'tcx> LateLintPass<'tcx> for ExplicitOutlivesRequirements {
1982    fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
1983        use rustc_middle::middle::resolve_bound_vars::ResolvedArg;
1984
1985        let def_id = item.owner_id.def_id;
1986        if let hir::ItemKind::Struct(_, generics, _)
1987        | hir::ItemKind::Enum(_, generics, _)
1988        | hir::ItemKind::Union(_, generics, _) = item.kind
1989        {
1990            let inferred_outlives = cx.tcx.inferred_outlives_of(def_id);
1991            if inferred_outlives.is_empty() {
1992                return;
1993            }
1994
1995            let ty_generics = cx.tcx.generics_of(def_id);
1996            let num_where_predicates = generics
1997                .predicates
1998                .iter()
1999                .filter(|predicate| predicate.kind.in_where_clause())
2000                .count();
2001
2002            let mut bound_count = 0;
2003            let mut lint_spans = Vec::new();
2004            let mut where_lint_spans = Vec::new();
2005            let mut dropped_where_predicate_count = 0;
2006            for (i, where_predicate) in generics.predicates.iter().enumerate() {
2007                let (relevant_lifetimes, bounds, predicate_span, in_where_clause) =
2008                    match where_predicate.kind {
2009                        hir::WherePredicateKind::RegionPredicate(predicate) => {
2010                            if let Some(ResolvedArg::EarlyBound(region_def_id)) =
2011                                cx.tcx.named_bound_var(predicate.lifetime.hir_id)
2012                            {
2013                                (
2014                                    Self::lifetimes_outliving_lifetime(
2015                                        cx.tcx,
2016                                        // don't warn if the inferred span actually came from the predicate we're looking at
2017                                        // this happens if the type is recursively defined
2018                                        inferred_outlives.iter().filter(|(_, span)| {
2019                                            !where_predicate.span.contains(*span)
2020                                        }),
2021                                        item.owner_id.def_id,
2022                                        region_def_id,
2023                                    ),
2024                                    &predicate.bounds,
2025                                    where_predicate.span,
2026                                    predicate.in_where_clause,
2027                                )
2028                            } else {
2029                                continue;
2030                            }
2031                        }
2032                        hir::WherePredicateKind::BoundPredicate(predicate) => {
2033                            // FIXME we can also infer bounds on associated types,
2034                            // and should check for them here.
2035                            match predicate.bounded_ty.kind {
2036                                hir::TyKind::Path(hir::QPath::Resolved(None, path)) => {
2037                                    let Res::Def(DefKind::TyParam, def_id) = path.res else {
2038                                        continue;
2039                                    };
2040                                    let index = ty_generics.param_def_id_to_index[&def_id];
2041                                    // Removing a `T: 'r` outlives bound can silently change
2042                                    // the object lifetime default for `Struct<'r, dyn Trait>`
2043                                    // (RFC 599): the explicit bound sets the default to `'r`,
2044                                    // so removing it may change it to `'static` (or cause an
2045                                    // ambiguity error if there is no unique default). Only
2046                                    // suppress the lint for non-higher-ranked predicates when
2047                                    // T is not `Sized` (i.e. can hold trait object types).
2048                                    // Higher-ranked predicates (`for<'x> T: 'r`) are excluded
2049                                    // from RFC 599 object lifetime defaulting and are always
2050                                    // safe to remove.
2051                                    if predicate.bound_generic_params.is_empty() {
2052                                        let ty_param = &ty_generics.own_params[index as usize];
2053                                        let param_ty =
2054                                            Ty::new_param(cx.tcx, ty_param.index, ty_param.name);
2055                                        if !param_ty.is_sized(cx.tcx, cx.typing_env()) {
2056                                            continue;
2057                                        }
2058                                    }
2059                                    (
2060                                        Self::lifetimes_outliving_type(
2061                                            // don't warn if the inferred span actually came from the predicate we're looking at
2062                                            // this happens if the type is recursively defined
2063                                            inferred_outlives.iter().filter(|(_, span)| {
2064                                                !where_predicate.span.contains(*span)
2065                                            }),
2066                                            index,
2067                                        ),
2068                                        &predicate.bounds,
2069                                        where_predicate.span,
2070                                        predicate.origin == PredicateOrigin::WhereClause,
2071                                    )
2072                                }
2073                                _ => {
2074                                    continue;
2075                                }
2076                            }
2077                        }
2078                    };
2079                if relevant_lifetimes.is_empty() {
2080                    continue;
2081                }
2082
2083                let bound_spans = self.collect_outlives_bound_spans(
2084                    cx.tcx,
2085                    bounds,
2086                    &relevant_lifetimes,
2087                    predicate_span,
2088                    item.owner_id.to_def_id(),
2089                );
2090                bound_count += bound_spans.len();
2091
2092                let drop_predicate = bound_spans.len() == bounds.len();
2093                if drop_predicate && in_where_clause {
2094                    dropped_where_predicate_count += 1;
2095                }
2096
2097                if drop_predicate {
2098                    if !in_where_clause {
2099                        lint_spans.push(predicate_span);
2100                    } else if predicate_span.from_expansion() {
2101                        // Don't try to extend the span if it comes from a macro expansion.
2102                        where_lint_spans.push(predicate_span);
2103                    } else if i + 1 < num_where_predicates {
2104                        // If all the bounds on a predicate were inferable and there are
2105                        // further predicates, we want to eat the trailing comma.
2106                        let next_predicate_span = generics.predicates[i + 1].span;
2107                        if next_predicate_span.from_expansion() {
2108                            where_lint_spans.push(predicate_span);
2109                        } else {
2110                            where_lint_spans
2111                                .push(predicate_span.to(next_predicate_span.shrink_to_lo()));
2112                        }
2113                    } else {
2114                        // Eat the optional trailing comma after the last predicate.
2115                        let where_span = generics.where_clause_span;
2116                        if where_span.from_expansion() {
2117                            where_lint_spans.push(predicate_span);
2118                        } else {
2119                            where_lint_spans.push(predicate_span.to(where_span.shrink_to_hi()));
2120                        }
2121                    }
2122                } else {
2123                    where_lint_spans.extend(self.consolidate_outlives_bound_spans(
2124                        predicate_span.shrink_to_lo(),
2125                        bounds,
2126                        bound_spans,
2127                    ));
2128                }
2129            }
2130
2131            // If all predicates in where clause are inferable, drop the entire clause
2132            // (including the `where`)
2133            if generics.has_where_clause_predicates
2134                && dropped_where_predicate_count == num_where_predicates
2135            {
2136                let where_span = generics.where_clause_span;
2137                // Extend the where clause back to the closing `>` of the
2138                // generics, except for tuple struct, which have the `where`
2139                // after the fields of the struct.
2140                let full_where_span =
2141                    if let hir::ItemKind::Struct(_, _, hir::VariantData::Tuple(..)) = item.kind {
2142                        where_span
2143                    } else {
2144                        generics.span.shrink_to_hi().to(where_span)
2145                    };
2146
2147                // Due to macro expansions, the `full_where_span` might not actually contain all
2148                // predicates.
2149                if where_lint_spans.iter().all(|&sp| full_where_span.contains(sp)) {
2150                    lint_spans.push(full_where_span);
2151                } else {
2152                    lint_spans.extend(where_lint_spans);
2153                }
2154            } else {
2155                lint_spans.extend(where_lint_spans);
2156            }
2157
2158            if !lint_spans.is_empty() {
2159                // Do not automatically delete outlives requirements from macros.
2160                let applicability = if lint_spans.iter().all(|sp| sp.can_be_used_for_suggestions())
2161                {
2162                    Applicability::MachineApplicable
2163                } else {
2164                    Applicability::MaybeIncorrect
2165                };
2166
2167                // Due to macros, there might be several predicates with the same span
2168                // and we only want to suggest removing them once.
2169                lint_spans.sort_unstable();
2170                lint_spans.dedup();
2171
2172                cx.emit_span_lint(
2173                    EXPLICIT_OUTLIVES_REQUIREMENTS,
2174                    lint_spans.clone(),
2175                    BuiltinExplicitOutlives {
2176                        suggestion: BuiltinExplicitOutlivesSuggestion {
2177                            spans: lint_spans,
2178                            applicability,
2179                            count: bound_count,
2180                        },
2181                    },
2182                );
2183            }
2184        }
2185    }
2186}
2187
2188#[doc =
r" The `incomplete_features` lint detects unstable features enabled with"]
#[doc =
r" the [`feature` attribute] that may function improperly in some or all"]
#[doc = r" cases."]
#[doc = r""]
#[doc =
r" [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![feature(generic_const_exprs)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Although it is encouraged for people to experiment with unstable"]
#[doc =
r" features, some of them are known to be incomplete or faulty. This lint"]
#[doc =
r" is a signal that the feature has not yet been finished, and you may"]
#[doc = r" experience problems with it."]
pub static INCOMPLETE_FEATURES: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "INCOMPLETE_FEATURES",
            default_level: ::rustc_lint_defs::Warn,
            desc: "incomplete features that may function improperly in some or all cases",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
2189    /// The `incomplete_features` lint detects unstable features enabled with
2190    /// the [`feature` attribute] that may function improperly in some or all
2191    /// cases.
2192    ///
2193    /// [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/
2194    ///
2195    /// ### Example
2196    ///
2197    /// ```rust
2198    /// #![feature(generic_const_exprs)]
2199    /// ```
2200    ///
2201    /// {{produces}}
2202    ///
2203    /// ### Explanation
2204    ///
2205    /// Although it is encouraged for people to experiment with unstable
2206    /// features, some of them are known to be incomplete or faulty. This lint
2207    /// is a signal that the feature has not yet been finished, and you may
2208    /// experience problems with it.
2209    pub INCOMPLETE_FEATURES,
2210    Warn,
2211    "incomplete features that may function improperly in some or all cases"
2212}
2213
2214#[doc =
r" The `internal_features` lint detects unstable features enabled with"]
#[doc =
r" the [`feature` attribute] that are internal to the compiler or standard"]
#[doc = r" library."]
#[doc = r""]
#[doc =
r" [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![feature(rustc_attrs)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" These features are an implementation detail of the compiler and standard"]
#[doc = r" library and are not supposed to be used in user code."]
pub static INTERNAL_FEATURES: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "INTERNAL_FEATURES",
            default_level: ::rustc_lint_defs::Warn,
            desc: "internal features are not supposed to be used",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
2215    /// The `internal_features` lint detects unstable features enabled with
2216    /// the [`feature` attribute] that are internal to the compiler or standard
2217    /// library.
2218    ///
2219    /// [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/
2220    ///
2221    /// ### Example
2222    ///
2223    /// ```rust
2224    /// #![feature(rustc_attrs)]
2225    /// ```
2226    ///
2227    /// {{produces}}
2228    ///
2229    /// ### Explanation
2230    ///
2231    /// These features are an implementation detail of the compiler and standard
2232    /// library and are not supposed to be used in user code.
2233    pub INTERNAL_FEATURES,
2234    Warn,
2235    "internal features are not supposed to be used"
2236}
2237
2238#[doc =
r" Check for used feature gates in `INCOMPLETE_FEATURES` in `rustc_feature/src/unstable.rs`."]
pub struct IncompleteInternalFeatures;
#[automatically_derived]
impl ::core::marker::Copy for IncompleteInternalFeatures { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for IncompleteInternalFeatures { }
#[automatically_derived]
impl ::core::clone::Clone for IncompleteInternalFeatures {
    #[inline]
    fn clone(&self) -> IncompleteInternalFeatures { *self }
}
impl ::rustc_lint_defs::LintPass for IncompleteInternalFeatures {
    fn name(&self) -> &'static str { "IncompleteInternalFeatures" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [INCOMPLETE_FEATURES, INTERNAL_FEATURES]))
    }
}
impl IncompleteInternalFeatures {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [INCOMPLETE_FEATURES, INTERNAL_FEATURES]))
    }
}declare_lint_pass!(
2239    /// Check for used feature gates in `INCOMPLETE_FEATURES` in `rustc_feature/src/unstable.rs`.
2240    IncompleteInternalFeatures => [INCOMPLETE_FEATURES, INTERNAL_FEATURES]
2241);
2242
2243impl EarlyLintPass for IncompleteInternalFeatures {
2244    fn check_crate(&mut self, cx: &EarlyContext<'_>, _: &ast::Crate) {
2245        let features = cx.builder.features();
2246
2247        features
2248            .enabled_features_iter_stable_order()
2249            .filter(|(name, _)| features.incomplete(*name) || features.internal(*name))
2250            .for_each(|(name, span)| {
2251                if features.incomplete(name) {
2252                    let note = rustc_feature::find_feature_issue(name, GateIssue::Language)
2253                        .map(|n| BuiltinFeatureIssueNote { n });
2254                    let help = HAS_MIN_FEATURES
2255                        .contains(&name)
2256                        .then_some(BuiltinIncompleteFeaturesHelp { name });
2257
2258                    cx.emit_span_lint(
2259                        INCOMPLETE_FEATURES,
2260                        span,
2261                        BuiltinIncompleteFeatures { name, note, help },
2262                    );
2263                } else {
2264                    cx.emit_span_lint(INTERNAL_FEATURES, span, BuiltinInternalFeatures { name });
2265                }
2266            });
2267    }
2268}
2269
2270const HAS_MIN_FEATURES: &[Symbol] = &[sym::specialization];
2271
2272#[doc =
r" The `invalid_value` lint detects creating a value that is not valid,"]
#[doc = r" such as a null reference."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,no_run"]
#[doc = r" # #![allow(unused)]"]
#[doc = r" unsafe {"]
#[doc = r"     let x: &'static i32 = std::mem::zeroed();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In some situations the compiler can detect that the code is creating"]
#[doc = r" an invalid value, which should be avoided."]
#[doc = r""]
#[doc = r" In particular, this lint will check for improper use of"]
#[doc = r" [`mem::zeroed`], [`mem::uninitialized`], [`mem::transmute`], and"]
#[doc =
r" [`MaybeUninit::assume_init`] that can cause [undefined behavior]. The"]
#[doc =
r" lint should provide extra information to indicate what the problem is"]
#[doc = r" and a possible solution."]
#[doc = r""]
#[doc = r" [`mem::zeroed`]: https://doc.rust-lang.org/std/mem/fn.zeroed.html"]
#[doc =
r" [`mem::uninitialized`]: https://doc.rust-lang.org/std/mem/fn.uninitialized.html"]
#[doc =
r" [`mem::transmute`]: https://doc.rust-lang.org/std/mem/fn.transmute.html"]
#[doc =
r" [`MaybeUninit::assume_init`]: https://doc.rust-lang.org/std/mem/union.MaybeUninit.html#method.assume_init"]
#[doc =
r" [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html"]
pub static INVALID_VALUE: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "INVALID_VALUE",
            default_level: ::rustc_lint_defs::Warn,
            desc: "an invalid value is being created (such as a null reference)",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
2273    /// The `invalid_value` lint detects creating a value that is not valid,
2274    /// such as a null reference.
2275    ///
2276    /// ### Example
2277    ///
2278    /// ```rust,no_run
2279    /// # #![allow(unused)]
2280    /// unsafe {
2281    ///     let x: &'static i32 = std::mem::zeroed();
2282    /// }
2283    /// ```
2284    ///
2285    /// {{produces}}
2286    ///
2287    /// ### Explanation
2288    ///
2289    /// In some situations the compiler can detect that the code is creating
2290    /// an invalid value, which should be avoided.
2291    ///
2292    /// In particular, this lint will check for improper use of
2293    /// [`mem::zeroed`], [`mem::uninitialized`], [`mem::transmute`], and
2294    /// [`MaybeUninit::assume_init`] that can cause [undefined behavior]. The
2295    /// lint should provide extra information to indicate what the problem is
2296    /// and a possible solution.
2297    ///
2298    /// [`mem::zeroed`]: https://doc.rust-lang.org/std/mem/fn.zeroed.html
2299    /// [`mem::uninitialized`]: https://doc.rust-lang.org/std/mem/fn.uninitialized.html
2300    /// [`mem::transmute`]: https://doc.rust-lang.org/std/mem/fn.transmute.html
2301    /// [`MaybeUninit::assume_init`]: https://doc.rust-lang.org/std/mem/union.MaybeUninit.html#method.assume_init
2302    /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
2303    pub INVALID_VALUE,
2304    Warn,
2305    "an invalid value is being created (such as a null reference)"
2306}
2307
2308pub struct InvalidValue;
#[automatically_derived]
impl ::core::marker::Copy for InvalidValue { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for InvalidValue { }
#[automatically_derived]
impl ::core::clone::Clone for InvalidValue {
    #[inline]
    fn clone(&self) -> InvalidValue { *self }
}
impl ::rustc_lint_defs::LintPass for InvalidValue {
    fn name(&self) -> &'static str { "InvalidValue" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [INVALID_VALUE]))
    }
}
impl InvalidValue {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [INVALID_VALUE]))
    }
}declare_lint_pass!(InvalidValue => [INVALID_VALUE]);
2309
2310/// Information about why a type cannot be initialized this way.
2311pub struct InitError {
2312    pub(crate) message: String,
2313    /// Spans from struct fields and similar that can be obtained from just the type.
2314    pub(crate) span: Option<Span>,
2315    /// Used to report a trace through adts.
2316    pub(crate) nested: Option<Box<InitError>>,
2317}
2318impl InitError {
2319    fn spanned(self, span: Span) -> InitError {
2320        Self { span: Some(span), ..self }
2321    }
2322
2323    fn nested(self, nested: impl Into<Option<InitError>>) -> InitError {
2324        if !self.nested.is_none() {
    ::core::panicking::panic("assertion failed: self.nested.is_none()")
};assert!(self.nested.is_none());
2325        Self { nested: nested.into().map(Box::new), ..self }
2326    }
2327}
2328
2329impl<'a> From<&'a str> for InitError {
2330    fn from(s: &'a str) -> Self {
2331        s.to_owned().into()
2332    }
2333}
2334impl From<String> for InitError {
2335    fn from(message: String) -> Self {
2336        Self { message, span: None, nested: None }
2337    }
2338}
2339
2340impl<'tcx> LateLintPass<'tcx> for InvalidValue {
2341    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &hir::Expr<'_>) {
2342        #[derive(#[automatically_derived]
impl ::core::fmt::Debug for InitKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                InitKind::Zeroed => "Zeroed",
                InitKind::Uninit => "Uninit",
            })
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for InitKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for InitKind {
    #[inline]
    fn clone(&self) -> InitKind { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for InitKind {
    #[inline]
    fn eq(&self, other: &InitKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq)]
2343        enum InitKind {
2344            Zeroed,
2345            Uninit,
2346        }
2347
2348        /// Test if this constant is all-0.
2349        fn is_zero(expr: &hir::Expr<'_>) -> bool {
2350            use hir::ExprKind::*;
2351            use rustc_ast::LitKind::*;
2352            match &expr.kind {
2353                Lit(lit) => {
2354                    if let Int(i, _) = lit.node {
2355                        i == 0
2356                    } else {
2357                        false
2358                    }
2359                }
2360                Tup(tup) => tup.iter().all(is_zero),
2361                _ => false,
2362            }
2363        }
2364
2365        /// Determine if this expression is a "dangerous initialization".
2366        fn is_dangerous_init(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> Option<InitKind> {
2367            if let hir::ExprKind::Call(path_expr, args) = expr.kind
2368                // Find calls to `mem::{uninitialized,zeroed}` methods.
2369                && let hir::ExprKind::Path(ref qpath) = path_expr.kind
2370            {
2371                let def_id = cx.qpath_res(qpath, path_expr.hir_id).opt_def_id()?;
2372                match cx.tcx.get_diagnostic_name(def_id) {
2373                    Some(sym::mem_zeroed) => return Some(InitKind::Zeroed),
2374                    Some(sym::mem_uninitialized) => return Some(InitKind::Uninit),
2375                    Some(sym::transmute) if is_zero(&args[0]) => return Some(InitKind::Zeroed),
2376                    _ => {}
2377                }
2378            } else if let hir::ExprKind::MethodCall(_, receiver, ..) = expr.kind {
2379                // Find problematic calls to `MaybeUninit::assume_init`.
2380                let def_id = cx.typeck_results().type_dependent_def_id(expr.hir_id)?;
2381                if cx.tcx.is_diagnostic_item(sym::assume_init, def_id) {
2382                    // This is a call to *some* method named `assume_init`.
2383                    // See if the `self` parameter is one of the dangerous constructors.
2384                    if let hir::ExprKind::Call(path_expr, _) = receiver.kind
2385                        && let hir::ExprKind::Path(ref qpath) = path_expr.kind
2386                    {
2387                        let def_id = cx.qpath_res(qpath, path_expr.hir_id).opt_def_id()?;
2388                        match cx.tcx.get_diagnostic_name(def_id) {
2389                            Some(sym::maybe_uninit_zeroed) => return Some(InitKind::Zeroed),
2390                            Some(sym::maybe_uninit_uninit) => return Some(InitKind::Uninit),
2391                            _ => {}
2392                        }
2393                    }
2394                }
2395            }
2396
2397            None
2398        }
2399
2400        fn variant_find_init_error<'tcx>(
2401            cx: &LateContext<'tcx>,
2402            ty: Ty<'tcx>,
2403            variant: &VariantDef,
2404            args: ty::GenericArgsRef<'tcx>,
2405            descr: &str,
2406            init: InitKind,
2407        ) -> Option<InitError> {
2408            let mut field_err = variant.fields.iter().find_map(|field| {
2409                ty_find_init_error(cx, field.ty(cx.tcx, args).skip_norm_wip(), init).map(
2410                    |mut err| {
2411                        if !field.did.is_local() {
2412                            err
2413                        } else if err.span.is_none() {
2414                            err.span = Some(cx.tcx.def_span(field.did));
2415                            (&mut err.message).write_fmt(format_args!(" (in this {0})", descr))write!(&mut err.message, " (in this {descr})").unwrap();
2416                            err
2417                        } else {
2418                            InitError::from(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("in this {0}", descr))
    })format!("in this {descr}"))
2419                                .spanned(cx.tcx.def_span(field.did))
2420                                .nested(err)
2421                        }
2422                    },
2423                )
2424            });
2425
2426            // Check if this ADT has a constrained layout (like `NonNull` and friends).
2427            if let Ok(layout) = cx.tcx.layout_of(cx.typing_env().as_query_input(ty)) {
2428                if let BackendRepr::Scalar(scalar) | BackendRepr::ScalarPair { a: scalar, .. } =
2429                    &layout.backend_repr
2430                {
2431                    let range = scalar.valid_range(cx);
2432                    let msg = if !range.contains(0) {
2433                        "must be non-null"
2434                    } else if init == InitKind::Uninit && !scalar.is_always_valid(cx) {
2435                        // Prefer reporting on the fields over the entire struct for uninit,
2436                        // as the information bubbles out and it may be unclear why the type can't
2437                        // be null from just its outside signature.
2438
2439                        "must be initialized inside its custom valid range"
2440                    } else {
2441                        return field_err;
2442                    };
2443                    if let Some(field_err) = &mut field_err {
2444                        // Most of the time, if the field error is the same as the struct error,
2445                        // the struct error only happens because of the field error.
2446                        if field_err.message.contains(msg) {
2447                            field_err.message = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("because {0}", field_err.message))
    })format!("because {}", field_err.message);
2448                        }
2449                    }
2450                    return Some(InitError::from(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}` {1}", ty, msg))
    })format!("`{ty}` {msg}")).nested(field_err));
2451                }
2452            }
2453            field_err
2454        }
2455
2456        /// Return `Some` only if we are sure this type does *not*
2457        /// allow zero initialization.
2458        fn ty_find_init_error<'tcx>(
2459            cx: &LateContext<'tcx>,
2460            ty: Ty<'tcx>,
2461            init: InitKind,
2462        ) -> Option<InitError> {
2463            let ty = cx
2464                .tcx
2465                .try_normalize_erasing_regions(cx.typing_env(), Unnormalized::new_wip(ty))
2466                .unwrap_or(ty);
2467
2468            match ty.kind() {
2469                // Primitive types that don't like 0 as a value.
2470                ty::Ref(..) => Some("references must be non-null".into()),
2471                ty::Adt(..) if ty.is_box() => Some("`Box` must be non-null".into()),
2472                ty::FnPtr(..) => Some("function pointers must be non-null".into()),
2473                ty::Never => Some("the `!` type has no valid value".into()),
2474                ty::RawPtr(ty, _) if #[allow(non_exhaustive_omitted_patterns)] match ty.kind() {
    ty::Dynamic(..) => true,
    _ => false,
}matches!(ty.kind(), ty::Dynamic(..)) =>
2475                // raw ptr to dyn Trait
2476                {
2477                    Some("the vtable of a wide raw pointer must be non-null".into())
2478                }
2479                // Primitive types with other constraints.
2480                ty::Bool if init == InitKind::Uninit => {
2481                    Some("booleans must be either `true` or `false`".into())
2482                }
2483                ty::Char if init == InitKind::Uninit => {
2484                    Some("characters must be a valid Unicode codepoint".into())
2485                }
2486                ty::Int(_) | ty::Uint(_) if init == InitKind::Uninit => {
2487                    Some("integers must be initialized".into())
2488                }
2489                ty::Float(_) if init == InitKind::Uninit => {
2490                    Some("floats must be initialized".into())
2491                }
2492                ty::RawPtr(_, _) if init == InitKind::Uninit => {
2493                    Some("raw pointers must be initialized".into())
2494                }
2495                // Recurse and checks for some compound types. (but not unions)
2496                ty::Adt(adt_def, args) if !adt_def.is_union() => {
2497                    // Handle structs.
2498                    if adt_def.is_struct() {
2499                        return variant_find_init_error(
2500                            cx,
2501                            ty,
2502                            adt_def.non_enum_variant(),
2503                            args,
2504                            "struct field",
2505                            init,
2506                        );
2507                    }
2508                    // And now, enums.
2509                    let span = cx.tcx.def_span(adt_def.did());
2510                    let mut potential_variants = adt_def.variants().iter().filter_map(|variant| {
2511                        let definitely_inhabited = match variant
2512                            .inhabited_predicate(cx.tcx, *adt_def)
2513                            .instantiate(cx.tcx, args)
2514                            .apply_any_module(cx.tcx, cx.typing_env())
2515                        {
2516                            // Entirely skip uninhabited variants.
2517                            Some(false) => return None,
2518                            // Forward the others, but remember which ones are definitely inhabited.
2519                            Some(true) => true,
2520                            None => false,
2521                        };
2522                        Some((variant, definitely_inhabited))
2523                    });
2524                    let Some(first_variant) = potential_variants.next() else {
2525                        return Some(
2526                            InitError::from("enums with no inhabited variants have no valid value")
2527                                .spanned(span),
2528                        );
2529                    };
2530                    // So we have at least one potentially inhabited variant. Might we have two?
2531                    let Some(second_variant) = potential_variants.next() else {
2532                        // There is only one potentially inhabited variant. So we can recursively
2533                        // check that variant!
2534                        return variant_find_init_error(
2535                            cx,
2536                            ty,
2537                            first_variant.0,
2538                            args,
2539                            "field of the only potentially inhabited enum variant",
2540                            init,
2541                        );
2542                    };
2543                    // So we have at least two potentially inhabited variants. If we can prove that
2544                    // we have at least two *definitely* inhabited variants, then we have a tag and
2545                    // hence leaving this uninit is definitely disallowed. (Leaving it zeroed could
2546                    // be okay, depending on which variant is encoded as zero tag.)
2547                    if init == InitKind::Uninit {
2548                        let definitely_inhabited = (first_variant.1 as usize)
2549                            + (second_variant.1 as usize)
2550                            + potential_variants
2551                                .filter(|(_variant, definitely_inhabited)| *definitely_inhabited)
2552                                .count();
2553                        if definitely_inhabited > 1 {
2554                            return Some(InitError::from(
2555                                "enums with multiple inhabited variants have to be initialized to a variant",
2556                            ).spanned(span));
2557                        }
2558                    }
2559                    // We couldn't find anything wrong here.
2560                    None
2561                }
2562                ty::Tuple(..) => {
2563                    // Proceed recursively, check all fields.
2564                    ty.tuple_fields().iter().find_map(|field| ty_find_init_error(cx, field, init))
2565                }
2566                ty::Array(ty, len) => {
2567                    if #[allow(non_exhaustive_omitted_patterns)] match len.try_to_target_usize(cx.tcx)
    {
    Some(v) if v > 0 => true,
    _ => false,
}matches!(len.try_to_target_usize(cx.tcx), Some(v) if v > 0) {
2568                        // Array length known at array non-empty -- recurse.
2569                        ty_find_init_error(cx, *ty, init)
2570                    } else {
2571                        // Empty array or size unknown.
2572                        None
2573                    }
2574                }
2575                // Conservative fallback.
2576                _ => None,
2577            }
2578        }
2579
2580        if let Some(init) = is_dangerous_init(cx, expr) {
2581            // This conjures an instance of a type out of nothing,
2582            // using zeroed or uninitialized memory.
2583            // We are extremely conservative with what we warn about.
2584            let conjured_ty = cx.typeck_results().expr_ty(expr);
2585            if let Some(err) = {
    let _guard = NoTrimmedGuard::new();
    ty_find_init_error(cx, conjured_ty, init)
}with_no_trimmed_paths!(ty_find_init_error(cx, conjured_ty, init)) {
2586                let msg = match init {
2587                    InitKind::Zeroed => {
2588                        rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the type `{$ty}` does not permit zero-initialization"))msg!("the type `{$ty}` does not permit zero-initialization")
2589                    }
2590                    InitKind::Uninit => {
2591                        rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("the type `{$ty}` does not permit being left uninitialized"))msg!("the type `{$ty}` does not permit being left uninitialized")
2592                    }
2593                };
2594                let sub = BuiltinUnpermittedTypeInitSub { err };
2595                cx.emit_span_lint(
2596                    INVALID_VALUE,
2597                    expr.span,
2598                    BuiltinUnpermittedTypeInit {
2599                        msg,
2600                        ty: conjured_ty,
2601                        label: expr.span,
2602                        sub,
2603                        tcx: cx.tcx,
2604                    },
2605                );
2606            }
2607        }
2608    }
2609}
2610
2611#[doc =
r" The `deref_nullptr` lint detects when a null pointer is dereferenced,"]
#[doc = r" which causes [undefined behavior]."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![allow(unused)]"]
#[doc = r" use std::ptr;"]
#[doc = r" unsafe {"]
#[doc = r"     let x = &*ptr::null::<i32>();"]
#[doc = r"     let x = ptr::addr_of!(*ptr::null::<i32>());"]
#[doc = r"     let x = *(0 as *const i32);"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Dereferencing a null pointer causes [undefined behavior] if it is accessed"]
#[doc = r" (loaded from or stored to)."]
#[doc = r""]
#[doc =
r" [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html"]
pub static DEREF_NULLPTR: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "DEREF_NULLPTR",
            default_level: ::rustc_lint_defs::Deny,
            desc: "detects when an null pointer is dereferenced",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
2612    /// The `deref_nullptr` lint detects when a null pointer is dereferenced,
2613    /// which causes [undefined behavior].
2614    ///
2615    /// ### Example
2616    ///
2617    /// ```rust,compile_fail
2618    /// # #![allow(unused)]
2619    /// use std::ptr;
2620    /// unsafe {
2621    ///     let x = &*ptr::null::<i32>();
2622    ///     let x = ptr::addr_of!(*ptr::null::<i32>());
2623    ///     let x = *(0 as *const i32);
2624    /// }
2625    /// ```
2626    ///
2627    /// {{produces}}
2628    ///
2629    /// ### Explanation
2630    ///
2631    /// Dereferencing a null pointer causes [undefined behavior] if it is accessed
2632    /// (loaded from or stored to).
2633    ///
2634    /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
2635    pub DEREF_NULLPTR,
2636    Deny,
2637    "detects when an null pointer is dereferenced"
2638}
2639
2640pub struct DerefNullPtr;
#[automatically_derived]
impl ::core::marker::Copy for DerefNullPtr { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DerefNullPtr { }
#[automatically_derived]
impl ::core::clone::Clone for DerefNullPtr {
    #[inline]
    fn clone(&self) -> DerefNullPtr { *self }
}
impl ::rustc_lint_defs::LintPass for DerefNullPtr {
    fn name(&self) -> &'static str { "DerefNullPtr" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DEREF_NULLPTR]))
    }
}
impl DerefNullPtr {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DEREF_NULLPTR]))
    }
}declare_lint_pass!(DerefNullPtr => [DEREF_NULLPTR]);
2641
2642impl<'tcx> LateLintPass<'tcx> for DerefNullPtr {
2643    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &hir::Expr<'_>) {
2644        /// test if expression is a null ptr
2645        fn is_null_ptr(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> bool {
2646            let pointer_ty = cx.typeck_results().expr_ty(expr);
2647            let ty::RawPtr(pointee, _) = pointer_ty.kind() else {
2648                return false;
2649            };
2650            if let Ok(layout) = cx.tcx.layout_of(cx.typing_env().as_query_input(*pointee)) {
2651                if layout.layout.size() == rustc_abi::Size::ZERO {
2652                    return false;
2653                }
2654            }
2655
2656            match &expr.kind {
2657                hir::ExprKind::Cast(expr, ty) => {
2658                    if let hir::TyKind::Ptr(_) = ty.kind {
2659                        return is_zero(expr) || is_null_ptr(cx, expr);
2660                    }
2661                }
2662                // check for call to `core::ptr::null` or `core::ptr::null_mut`
2663                hir::ExprKind::Call(path, _) => {
2664                    if let hir::ExprKind::Path(ref qpath) = path.kind
2665                        && let Some(def_id) = cx.qpath_res(qpath, path.hir_id).opt_def_id()
2666                    {
2667                        return #[allow(non_exhaustive_omitted_patterns)] match cx.tcx.get_diagnostic_name(def_id)
    {
    Some(sym::ptr_null | sym::ptr_null_mut) => true,
    _ => false,
}matches!(
2668                            cx.tcx.get_diagnostic_name(def_id),
2669                            Some(sym::ptr_null | sym::ptr_null_mut)
2670                        );
2671                    }
2672                }
2673                _ => {}
2674            }
2675            false
2676        }
2677
2678        /// test if expression is the literal `0`
2679        fn is_zero(expr: &hir::Expr<'_>) -> bool {
2680            match &expr.kind {
2681                hir::ExprKind::Lit(lit) => {
2682                    if let LitKind::Int(a, _) = lit.node {
2683                        return a == 0;
2684                    }
2685                }
2686                _ => {}
2687            }
2688            false
2689        }
2690
2691        if let hir::ExprKind::Unary(hir::UnOp::Deref, expr_deref) = expr.kind
2692            && is_null_ptr(cx, expr_deref)
2693        {
2694            if let hir::Node::Expr(hir::Expr {
2695                kind: hir::ExprKind::AddrOf(hir::BorrowKind::Raw, ..),
2696                ..
2697            }) = cx.tcx.parent_hir_node(expr.hir_id)
2698            {
2699                // `&raw *NULL` is ok.
2700            } else {
2701                cx.emit_span_lint(
2702                    DEREF_NULLPTR,
2703                    expr.span,
2704                    BuiltinDerefNullptr { label: expr.span },
2705                );
2706            }
2707        }
2708    }
2709}
2710
2711#[doc =
r" The `named_asm_labels` lint detects the use of named labels in the"]
#[doc = r" inline `asm!` macro."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![feature(asm_experimental_arch)]"]
#[doc = r" use std::arch::asm;"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r"     unsafe {"]
#[doc = r#"         asm!("foo: bar");"#]
#[doc = r"     }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" LLVM is allowed to duplicate inline assembly blocks for any"]
#[doc =
r" reason, for example when it is in a function that gets inlined. Because"]
#[doc =
r" of this, GNU assembler [local labels] *must* be used instead of labels"]
#[doc =
r" with a name. Using named labels might cause assembler or linker errors."]
#[doc = r""]
#[doc = r" See the explanation in [Rust By Example] for more details."]
#[doc = r""]
#[doc =
r" [local labels]: https://sourceware.org/binutils/docs/as/Symbol-Names.html#Local-Labels"]
#[doc =
r" [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels"]
pub static NAMED_ASM_LABELS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "NAMED_ASM_LABELS",
            default_level: ::rustc_lint_defs::Deny,
            desc: "named labels in inline assembly",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
2712    /// The `named_asm_labels` lint detects the use of named labels in the
2713    /// inline `asm!` macro.
2714    ///
2715    /// ### Example
2716    ///
2717    /// ```rust,compile_fail
2718    /// # #![feature(asm_experimental_arch)]
2719    /// use std::arch::asm;
2720    ///
2721    /// fn main() {
2722    ///     unsafe {
2723    ///         asm!("foo: bar");
2724    ///     }
2725    /// }
2726    /// ```
2727    ///
2728    /// {{produces}}
2729    ///
2730    /// ### Explanation
2731    ///
2732    /// LLVM is allowed to duplicate inline assembly blocks for any
2733    /// reason, for example when it is in a function that gets inlined. Because
2734    /// of this, GNU assembler [local labels] *must* be used instead of labels
2735    /// with a name. Using named labels might cause assembler or linker errors.
2736    ///
2737    /// See the explanation in [Rust By Example] for more details.
2738    ///
2739    /// [local labels]: https://sourceware.org/binutils/docs/as/Symbol-Names.html#Local-Labels
2740    /// [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels
2741    pub NAMED_ASM_LABELS,
2742    Deny,
2743    "named labels in inline assembly",
2744}
2745
2746#[doc =
r" The `binary_asm_labels` lint detects the use of numeric labels containing only binary"]
#[doc = r" digits in the inline `asm!` macro."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (fails on non-x86_64)"]
#[doc = r#" #![cfg(target_arch = "x86_64")]"#]
#[doc = r""]
#[doc = r" use std::arch::asm;"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r"     unsafe {"]
#[doc = r#"         asm!("0: jmp 0b");"#]
#[doc = r"     }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r" error: avoid using labels containing only the digits `0` and `1` in inline assembly"]
#[doc = r"  --> <source>:7:15"]
#[doc = r"   |"]
#[doc = r#" 7 |         asm!("0: jmp 0b");"#]
#[doc =
r"   |               ^ use a different label that doesn't start with `0` or `1`"]
#[doc = r"   |"]
#[doc = r"   = help: start numbering with `2` instead"]
#[doc =
r"   = note: an LLVM bug makes these labels ambiguous with a binary literal number on x86"]
#[doc =
r"   = note: see <https://github.com/llvm/llvm-project/issues/99547> for more information"]
#[doc = r"   = note: `#[deny(binary_asm_labels)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" An [LLVM bug] causes this code to fail to compile because it interprets the `0b` as a binary"]
#[doc =
r" literal instead of a reference to the previous local label `0`. To work around this bug,"]
#[doc = r" don't use labels that could be confused with a binary literal."]
#[doc = r""]
#[doc = r" This behavior is platform-specific to x86 and x86-64."]
#[doc = r""]
#[doc = r" See the explanation in [Rust By Example] for more details."]
#[doc = r""]
#[doc = r" [LLVM bug]: https://github.com/llvm/llvm-project/issues/99547"]
#[doc =
r" [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels"]
pub static BINARY_ASM_LABELS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "BINARY_ASM_LABELS",
            default_level: ::rustc_lint_defs::Deny,
            desc: "labels in inline assembly containing only 0 or 1 digits",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
2747    /// The `binary_asm_labels` lint detects the use of numeric labels containing only binary
2748    /// digits in the inline `asm!` macro.
2749    ///
2750    /// ### Example
2751    ///
2752    /// ```rust,ignore (fails on non-x86_64)
2753    /// #![cfg(target_arch = "x86_64")]
2754    ///
2755    /// use std::arch::asm;
2756    ///
2757    /// fn main() {
2758    ///     unsafe {
2759    ///         asm!("0: jmp 0b");
2760    ///     }
2761    /// }
2762    /// ```
2763    ///
2764    /// This will produce:
2765    ///
2766    /// ```text
2767    /// error: avoid using labels containing only the digits `0` and `1` in inline assembly
2768    ///  --> <source>:7:15
2769    ///   |
2770    /// 7 |         asm!("0: jmp 0b");
2771    ///   |               ^ use a different label that doesn't start with `0` or `1`
2772    ///   |
2773    ///   = help: start numbering with `2` instead
2774    ///   = note: an LLVM bug makes these labels ambiguous with a binary literal number on x86
2775    ///   = note: see <https://github.com/llvm/llvm-project/issues/99547> for more information
2776    ///   = note: `#[deny(binary_asm_labels)]` on by default
2777    /// ```
2778    ///
2779    /// ### Explanation
2780    ///
2781    /// An [LLVM bug] causes this code to fail to compile because it interprets the `0b` as a binary
2782    /// literal instead of a reference to the previous local label `0`. To work around this bug,
2783    /// don't use labels that could be confused with a binary literal.
2784    ///
2785    /// This behavior is platform-specific to x86 and x86-64.
2786    ///
2787    /// See the explanation in [Rust By Example] for more details.
2788    ///
2789    /// [LLVM bug]: https://github.com/llvm/llvm-project/issues/99547
2790    /// [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels
2791    pub BINARY_ASM_LABELS,
2792    Deny,
2793    "labels in inline assembly containing only 0 or 1 digits",
2794}
2795
2796pub struct AsmLabels;
#[automatically_derived]
impl ::core::marker::Copy for AsmLabels { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AsmLabels { }
#[automatically_derived]
impl ::core::clone::Clone for AsmLabels {
    #[inline]
    fn clone(&self) -> AsmLabels { *self }
}
impl ::rustc_lint_defs::LintPass for AsmLabels {
    fn name(&self) -> &'static str { "AsmLabels" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [NAMED_ASM_LABELS, BINARY_ASM_LABELS]))
    }
}
impl AsmLabels {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [NAMED_ASM_LABELS, BINARY_ASM_LABELS]))
    }
}declare_lint_pass!(AsmLabels => [NAMED_ASM_LABELS, BINARY_ASM_LABELS]);
2797
2798#[derive(#[automatically_derived]
impl ::core::fmt::Debug for AsmLabelKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AsmLabelKind::Named => "Named",
                AsmLabelKind::FormatArg => "FormatArg",
                AsmLabelKind::Binary => "Binary",
            })
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for AsmLabelKind {
    #[inline]
    fn clone(&self) -> AsmLabelKind { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AsmLabelKind { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for AsmLabelKind {
    #[inline]
    fn eq(&self, other: &AsmLabelKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for AsmLabelKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq)]
2799enum AsmLabelKind {
2800    Named,
2801    FormatArg,
2802    Binary,
2803}
2804
2805/// Checks if a potential label is actually a Hexagon register span notation.
2806///
2807/// Hexagon assembly uses register span notation like `r1:0`, `V5:4.w`, `p1:0` etc.
2808/// These follow the pattern: `[letter][digit(s)]:[digit(s)][optional_suffix]`
2809///
2810/// Returns `true` if the string matches a valid Hexagon register span pattern.
2811pub fn is_hexagon_register_span(possible_label: &str) -> bool {
2812    // Extract the full register span from the context
2813    if let Some(colon_idx) = possible_label.find(':') {
2814        let after_colon = &possible_label[colon_idx + 1..];
2815        is_hexagon_register_span_impl(&possible_label[..colon_idx], after_colon)
2816    } else {
2817        false
2818    }
2819}
2820
2821/// Helper function for use within the lint when we have statement context.
2822fn is_hexagon_register_span_context(
2823    possible_label: &str,
2824    statement: &str,
2825    colon_idx: usize,
2826) -> bool {
2827    // Extract what comes after the colon in the statement
2828    let after_colon_start = colon_idx + 1;
2829    if after_colon_start >= statement.len() {
2830        return false;
2831    }
2832
2833    // Get the part after the colon, up to the next whitespace or special character
2834    let after_colon_full = &statement[after_colon_start..];
2835    let after_colon = after_colon_full
2836        .chars()
2837        .take_while(|&c| c.is_ascii_alphanumeric() || c == '.')
2838        .collect::<String>();
2839
2840    is_hexagon_register_span_impl(possible_label, &after_colon)
2841}
2842
2843/// Core implementation for checking hexagon register spans.
2844fn is_hexagon_register_span_impl(before_colon: &str, after_colon: &str) -> bool {
2845    if before_colon.len() < 1 || after_colon.is_empty() {
2846        return false;
2847    }
2848
2849    let mut chars = before_colon.chars();
2850    let start = chars.next().unwrap();
2851
2852    // Must start with a letter (r, V, p, etc.)
2853    if !start.is_ascii_alphabetic() {
2854        return false;
2855    }
2856
2857    let rest = &before_colon[1..];
2858
2859    // Check if the part after the first letter is all digits and non-empty
2860    if rest.is_empty() || !rest.chars().all(|c| c.is_ascii_digit()) {
2861        return false;
2862    }
2863
2864    // Check if after colon starts with digits (may have suffix like .w, .h)
2865    let digits_after = after_colon.chars().take_while(|c| c.is_ascii_digit()).collect::<String>();
2866
2867    !digits_after.is_empty()
2868}
2869
2870impl<'tcx> LateLintPass<'tcx> for AsmLabels {
2871    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx hir::Expr<'tcx>) {
2872        if let hir::Expr {
2873            kind:
2874                hir::ExprKind::InlineAsm(hir::InlineAsm {
2875                    asm_macro: asm_macro @ (AsmMacro::Asm | AsmMacro::NakedAsm),
2876                    template_strs,
2877                    options,
2878                    ..
2879                }),
2880            ..
2881        } = expr
2882        {
2883            // Non-generic naked functions are allowed to define arbitrary
2884            // labels.
2885            if *asm_macro == AsmMacro::NakedAsm {
2886                let def_id = expr.hir_id.owner.def_id;
2887                if !cx.tcx.generics_of(def_id).requires_monomorphization(cx.tcx) {
2888                    return;
2889                }
2890            }
2891
2892            // asm with `options(raw)` does not do replacement with `{` and `}`.
2893            let raw = options.contains(InlineAsmOptions::RAW);
2894
2895            for (template_sym, template_snippet, template_span) in template_strs.iter() {
2896                let template_str = template_sym.as_str();
2897                let find_label_span = |needle: &str| -> Option<Span> {
2898                    if let Some(template_snippet) = template_snippet {
2899                        let snippet = template_snippet.as_str();
2900                        if let Some(pos) = snippet.find(needle) {
2901                            let end = pos
2902                                + snippet[pos..]
2903                                    .find(|c| c == ':')
2904                                    .unwrap_or(snippet[pos..].len() - 1);
2905                            let inner = InnerSpan::new(pos, end);
2906                            return Some(template_span.from_inner(inner));
2907                        }
2908                    }
2909
2910                    None
2911                };
2912
2913                // diagnostics are emitted per-template, so this is created here as opposed to the outer loop
2914                let mut spans = Vec::new();
2915
2916                // A semicolon might not actually be specified as a separator for all targets, but
2917                // it seems like LLVM accepts it always.
2918                let statements = template_str.split(|c| #[allow(non_exhaustive_omitted_patterns)] match c {
    '\n' | ';' => true,
    _ => false,
}matches!(c, '\n' | ';'));
2919                for statement in statements {
2920                    // If there's a comment, trim it from the statement
2921                    let statement = statement.find("//").map_or(statement, |idx| &statement[..idx]);
2922
2923                    // In this loop, if there is ever a non-label, no labels can come after it.
2924                    let mut start_idx = 0;
2925                    'label_loop: for (idx, _) in statement.match_indices(':') {
2926                        let possible_label = statement[start_idx..idx].trim();
2927                        let mut chars = possible_label.chars();
2928
2929                        let Some(start) = chars.next() else {
2930                            // Empty string means a leading ':' in this section, which is not a
2931                            // label.
2932                            break 'label_loop;
2933                        };
2934
2935                        // Whether a { bracket has been seen and its } hasn't been found yet.
2936                        let mut in_bracket = false;
2937                        let mut label_kind = AsmLabelKind::Named;
2938
2939                        // A label can also start with a format arg, if it's not a raw asm block.
2940                        if !raw && start == '{' {
2941                            in_bracket = true;
2942                            label_kind = AsmLabelKind::FormatArg;
2943                        } else if #[allow(non_exhaustive_omitted_patterns)] match start {
    '0' | '1' => true,
    _ => false,
}matches!(start, '0' | '1') {
2944                            // Binary labels have only the characters `0` or `1`.
2945                            label_kind = AsmLabelKind::Binary;
2946                        } else if !(start.is_ascii_alphabetic() || #[allow(non_exhaustive_omitted_patterns)] match start {
    '.' | '_' => true,
    _ => false,
}matches!(start, '.' | '_')) {
2947                            // Named labels start with ASCII letters, `.` or `_`.
2948                            // anything else is not a label
2949                            break 'label_loop;
2950                        }
2951
2952                        // Check for Hexagon register span notation (e.g., "r1:0", "V5:4", "V3:2.w")
2953                        // This is valid Hexagon assembly syntax, not a label
2954                        if #[allow(non_exhaustive_omitted_patterns)] match cx.tcx.sess.asm_arch {
    Some(InlineAsmArch::Hexagon) => true,
    _ => false,
}matches!(cx.tcx.sess.asm_arch, Some(InlineAsmArch::Hexagon))
2955                            && is_hexagon_register_span_context(possible_label, statement, idx)
2956                        {
2957                            break 'label_loop;
2958                        }
2959
2960                        for c in chars {
2961                            // Inside a template format arg, any character is permitted for the
2962                            // purposes of label detection because we assume that it can be
2963                            // replaced with some other valid label string later. `options(raw)`
2964                            // asm blocks cannot have format args, so they are excluded from this
2965                            // special case.
2966                            if !raw && in_bracket {
2967                                if c == '{' {
2968                                    // Nested brackets are not allowed in format args, this cannot
2969                                    // be a label.
2970                                    break 'label_loop;
2971                                }
2972
2973                                if c == '}' {
2974                                    // The end of the format arg.
2975                                    in_bracket = false;
2976                                }
2977                            } else if !raw && c == '{' {
2978                                // Start of a format arg.
2979                                in_bracket = true;
2980                                label_kind = AsmLabelKind::FormatArg;
2981                            } else {
2982                                let can_continue = match label_kind {
2983                                    // Format arg labels are considered to be named labels for the purposes
2984                                    // of continuing outside of their {} pair.
2985                                    AsmLabelKind::Named | AsmLabelKind::FormatArg => {
2986                                        c.is_ascii_alphanumeric() || #[allow(non_exhaustive_omitted_patterns)] match c {
    '_' | '$' => true,
    _ => false,
}matches!(c, '_' | '$')
2987                                    }
2988                                    AsmLabelKind::Binary => #[allow(non_exhaustive_omitted_patterns)] match c {
    '0' | '1' => true,
    _ => false,
}matches!(c, '0' | '1'),
2989                                };
2990
2991                                if !can_continue {
2992                                    // The potential label had an invalid character inside it, it
2993                                    // cannot be a label.
2994                                    break 'label_loop;
2995                                }
2996                            }
2997                        }
2998
2999                        // If all characters passed the label checks, this is a label.
3000                        spans.push((find_label_span(possible_label), label_kind));
3001                        start_idx = idx + 1;
3002                    }
3003                }
3004
3005                for (span, label_kind) in spans {
3006                    let missing_precise_span = span.is_none();
3007                    let span = span.unwrap_or(*template_span);
3008                    match label_kind {
3009                        AsmLabelKind::Named => {
3010                            cx.emit_span_lint(
3011                                NAMED_ASM_LABELS,
3012                                span,
3013                                InvalidAsmLabel::Named { missing_precise_span },
3014                            );
3015                        }
3016                        AsmLabelKind::FormatArg => {
3017                            cx.emit_span_lint(
3018                                NAMED_ASM_LABELS,
3019                                span,
3020                                InvalidAsmLabel::FormatArg { missing_precise_span },
3021                            );
3022                        }
3023                        // the binary asm issue only occurs when using intel syntax on x86 targets
3024                        AsmLabelKind::Binary
3025                            if !options.contains(InlineAsmOptions::ATT_SYNTAX)
3026                                && #[allow(non_exhaustive_omitted_patterns)] match cx.tcx.sess.asm_arch {
    Some(InlineAsmArch::X86 | InlineAsmArch::X86_64) | None => true,
    _ => false,
}matches!(
3027                                    cx.tcx.sess.asm_arch,
3028                                    Some(InlineAsmArch::X86 | InlineAsmArch::X86_64) | None
3029                                ) =>
3030                        {
3031                            cx.emit_span_lint(
3032                                BINARY_ASM_LABELS,
3033                                span,
3034                                InvalidAsmLabel::Binary { missing_precise_span, span },
3035                            )
3036                        }
3037                        // No lint on anything other than x86
3038                        AsmLabelKind::Binary => (),
3039                    };
3040                }
3041            }
3042        }
3043    }
3044}
3045
3046#[doc = r" The `special_module_name` lint detects module"]
#[doc = r" declarations for files that have a special meaning."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" mod lib;"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r"     lib::run();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Cargo recognizes `lib.rs` and `main.rs` as the root of a"]
#[doc = r" library or binary crate, so declaring them as modules"]
#[doc = r" will lead to miscompilation of the crate unless configured"]
#[doc = r" explicitly."]
#[doc = r""]
#[doc = r" To access a library from a binary target within the same crate,"]
#[doc = r" use `your_crate_name::` as the path instead of `lib::`:"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" // bar/src/lib.rs"]
#[doc = r" fn run() {"]
#[doc = r"     // ..."]
#[doc = r" }"]
#[doc = r""]
#[doc = r" // bar/src/main.rs"]
#[doc = r" fn main() {"]
#[doc = r"     bar::run();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" Binary targets cannot be used as libraries and so declaring"]
#[doc = r" one as a module is not allowed."]
pub static SPECIAL_MODULE_NAME: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "SPECIAL_MODULE_NAME",
            default_level: ::rustc_lint_defs::Warn,
            desc: "module declarations for files with a special meaning",
            is_externally_loaded: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
3047    /// The `special_module_name` lint detects module
3048    /// declarations for files that have a special meaning.
3049    ///
3050    /// ### Example
3051    ///
3052    /// ```rust,compile_fail
3053    /// mod lib;
3054    ///
3055    /// fn main() {
3056    ///     lib::run();
3057    /// }
3058    /// ```
3059    ///
3060    /// {{produces}}
3061    ///
3062    /// ### Explanation
3063    ///
3064    /// Cargo recognizes `lib.rs` and `main.rs` as the root of a
3065    /// library or binary crate, so declaring them as modules
3066    /// will lead to miscompilation of the crate unless configured
3067    /// explicitly.
3068    ///
3069    /// To access a library from a binary target within the same crate,
3070    /// use `your_crate_name::` as the path instead of `lib::`:
3071    ///
3072    /// ```rust,compile_fail
3073    /// // bar/src/lib.rs
3074    /// fn run() {
3075    ///     // ...
3076    /// }
3077    ///
3078    /// // bar/src/main.rs
3079    /// fn main() {
3080    ///     bar::run();
3081    /// }
3082    /// ```
3083    ///
3084    /// Binary targets cannot be used as libraries and so declaring
3085    /// one as a module is not allowed.
3086    pub SPECIAL_MODULE_NAME,
3087    Warn,
3088    "module declarations for files with a special meaning",
3089}
3090
3091pub struct SpecialModuleName;
#[automatically_derived]
impl ::core::marker::Copy for SpecialModuleName { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for SpecialModuleName { }
#[automatically_derived]
impl ::core::clone::Clone for SpecialModuleName {
    #[inline]
    fn clone(&self) -> SpecialModuleName { *self }
}
impl ::rustc_lint_defs::LintPass for SpecialModuleName {
    fn name(&self) -> &'static str { "SpecialModuleName" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [SPECIAL_MODULE_NAME]))
    }
}
impl SpecialModuleName {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [SPECIAL_MODULE_NAME]))
    }
}declare_lint_pass!(SpecialModuleName => [SPECIAL_MODULE_NAME]);
3092
3093impl EarlyLintPass for SpecialModuleName {
3094    fn check_crate(&mut self, cx: &EarlyContext<'_>, krate: &ast::Crate) {
3095        for item in &krate.items {
3096            if let ast::ItemKind::Mod(
3097                _,
3098                ident,
3099                ast::ModKind::Unloaded | ast::ModKind::Loaded(_, ast::Inline::No { .. }, _),
3100            ) = item.kind
3101            {
3102                if item.attrs.iter().any(|a| a.has_name(sym::path)) {
3103                    continue;
3104                }
3105
3106                match ident.name.as_str() {
3107                    "lib" => cx.emit_span_lint(
3108                        SPECIAL_MODULE_NAME,
3109                        item.span,
3110                        BuiltinSpecialModuleNameUsed::Lib,
3111                    ),
3112                    "main" => cx.emit_span_lint(
3113                        SPECIAL_MODULE_NAME,
3114                        item.span,
3115                        BuiltinSpecialModuleNameUsed::Main,
3116                    ),
3117                    _ => continue,
3118                }
3119            }
3120        }
3121    }
3122}
3123
3124#[doc = r" The `internal_eq_trait_method_impls` lint detects manual"]
#[doc = r" implementations of `Eq::assert_receiver_is_total_eq`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #[derive(PartialEq)]"]
#[doc = r" pub struct Foo;"]
#[doc = r""]
#[doc = r" impl Eq for Foo {"]
#[doc = r"     fn assert_receiver_is_total_eq(&self) {}"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" This method existed so that `#[derive(Eq)]` could check that all"]
#[doc = r" fields of a type implement `Eq`. Other users were never supposed"]
#[doc = r" to implement it and it was hidden from documentation."]
#[doc = r""]
#[doc = r" Unfortunately, it was not explicitly marked as unstable and some"]
#[doc =
r" people have now mistakenly assumed they had to implement this method."]
#[doc = r""]
#[doc =
r" As the method is never called by the standard library, you can safely"]
#[doc =
r" remove any implementations of the method and just write `impl Eq for Foo {}`."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a hard"]
#[doc = r" error in the future. See [issue #152336] for more details."]
#[doc = r""]
#[doc = r" [issue #152336]: https://github.com/rust-lang/rust/issues/152336"]
pub static INTERNAL_EQ_TRAIT_METHOD_IMPLS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: "INTERNAL_EQ_TRAIT_METHOD_IMPLS",
            default_level: ::rustc_lint_defs::Warn,
            desc: "manual implementation of the internal `Eq::assert_receiver_is_total_eq` method",
            is_externally_loaded: false,
            future_incompatible: Some(::rustc_lint_defs::FutureIncompatibleInfo {
                    reason: ::rustc_lint_defs::FutureIncompatibilityReason::FutureReleaseError(::rustc_lint_defs::ReleaseFcw {
                            issue_number: 152336,
                        }),
                    report_in_deps: false,
                    ..::rustc_lint_defs::FutureIncompatibleInfo::default_fields_for_macro()
                }),
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_lint! {
3125    /// The `internal_eq_trait_method_impls` lint detects manual
3126    /// implementations of `Eq::assert_receiver_is_total_eq`.
3127    ///
3128    /// ### Example
3129    ///
3130    /// ```rust
3131    /// #[derive(PartialEq)]
3132    /// pub struct Foo;
3133    ///
3134    /// impl Eq for Foo {
3135    ///     fn assert_receiver_is_total_eq(&self) {}
3136    /// }
3137    /// ```
3138    ///
3139    /// {{produces}}
3140    ///
3141    /// ### Explanation
3142    ///
3143    /// This method existed so that `#[derive(Eq)]` could check that all
3144    /// fields of a type implement `Eq`. Other users were never supposed
3145    /// to implement it and it was hidden from documentation.
3146    ///
3147    /// Unfortunately, it was not explicitly marked as unstable and some
3148    /// people have now mistakenly assumed they had to implement this method.
3149    ///
3150    /// As the method is never called by the standard library, you can safely
3151    /// remove any implementations of the method and just write `impl Eq for Foo {}`.
3152    ///
3153    /// This is a [future-incompatible] lint to transition this to a hard
3154    /// error in the future. See [issue #152336] for more details.
3155    ///
3156    /// [issue #152336]: https://github.com/rust-lang/rust/issues/152336
3157    pub INTERNAL_EQ_TRAIT_METHOD_IMPLS,
3158    Warn,
3159    "manual implementation of the internal `Eq::assert_receiver_is_total_eq` method",
3160    @future_incompatible = FutureIncompatibleInfo {
3161        reason: fcw!(FutureReleaseError #152336),
3162        report_in_deps: false,
3163    };
3164}
3165
3166pub struct InternalEqTraitMethodImpls;
#[automatically_derived]
impl ::core::marker::Copy for InternalEqTraitMethodImpls { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for InternalEqTraitMethodImpls { }
#[automatically_derived]
impl ::core::clone::Clone for InternalEqTraitMethodImpls {
    #[inline]
    fn clone(&self) -> InternalEqTraitMethodImpls { *self }
}
impl ::rustc_lint_defs::LintPass for InternalEqTraitMethodImpls {
    fn name(&self) -> &'static str { "InternalEqTraitMethodImpls" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [INTERNAL_EQ_TRAIT_METHOD_IMPLS]))
    }
}
impl InternalEqTraitMethodImpls {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [INTERNAL_EQ_TRAIT_METHOD_IMPLS]))
    }
}declare_lint_pass!(InternalEqTraitMethodImpls => [INTERNAL_EQ_TRAIT_METHOD_IMPLS]);
3167
3168impl<'tcx> LateLintPass<'tcx> for InternalEqTraitMethodImpls {
3169    fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx rustc_hir::ImplItem<'tcx>) {
3170        if let ImplItemImplKind::Trait { defaultness: _, trait_item_def_id: Ok(trait_item_def_id) } =
3171            item.impl_kind
3172            && cx.tcx.is_diagnostic_item(sym::assert_receiver_is_total_eq, trait_item_def_id)
3173        {
3174            cx.emit_span_lint(
3175                INTERNAL_EQ_TRAIT_METHOD_IMPLS,
3176                item.span,
3177                EqInternalMethodImplemented,
3178            );
3179        }
3180    }
3181}