]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_lint_defs/src/builtin.rs
Rollup merge of #92868 - pierwill:librustdoc-clippy, r=camelid
[rust.git] / compiler / rustc_lint_defs / src / builtin.rs
1 //! Some lints that are built in to the compiler.
2 //!
3 //! These are the built-in lints that are emitted direct in the main
4 //! compiler code, rather than using their own custom pass. Those
5 //! lints are all available in `rustc_lint::builtin`.
6
7 use crate::{declare_lint, declare_lint_pass, FutureIncompatibilityReason};
8 use rustc_span::edition::Edition;
9 use rustc_span::symbol::sym;
10
11 declare_lint! {
12     /// The `forbidden_lint_groups` lint detects violations of
13     /// `forbid` applied to a lint group. Due to a bug in the compiler,
14     /// these used to be overlooked entirely. They now generate a warning.
15     ///
16     /// ### Example
17     ///
18     /// ```rust
19     /// #![forbid(warnings)]
20     /// #![deny(bad_style)]
21     ///
22     /// fn main() {}
23     /// ```
24     ///
25     /// {{produces}}
26     ///
27     /// ### Recommended fix
28     ///
29     /// If your crate is using `#![forbid(warnings)]`,
30     /// we recommend that you change to `#![deny(warnings)]`.
31     ///
32     /// ### Explanation
33     ///
34     /// Due to a compiler bug, applying `forbid` to lint groups
35     /// previously had no effect. The bug is now fixed but instead of
36     /// enforcing `forbid` we issue this future-compatibility warning
37     /// to avoid breaking existing crates.
38     pub FORBIDDEN_LINT_GROUPS,
39     Warn,
40     "applying forbid to lint-groups",
41     @future_incompatible = FutureIncompatibleInfo {
42         reference: "issue #81670 <https://github.com/rust-lang/rust/issues/81670>",
43     };
44 }
45
46 declare_lint! {
47     /// The `ill_formed_attribute_input` lint detects ill-formed attribute
48     /// inputs that were previously accepted and used in practice.
49     ///
50     /// ### Example
51     ///
52     /// ```rust,compile_fail
53     /// #[inline = "this is not valid"]
54     /// fn foo() {}
55     /// ```
56     ///
57     /// {{produces}}
58     ///
59     /// ### Explanation
60     ///
61     /// Previously, inputs for many built-in attributes weren't validated and
62     /// nonsensical attribute inputs were accepted. After validation was
63     /// added, it was determined that some existing projects made use of these
64     /// invalid forms. This is a [future-incompatible] lint to transition this
65     /// to a hard error in the future. See [issue #57571] for more details.
66     ///
67     /// Check the [attribute reference] for details on the valid inputs for
68     /// attributes.
69     ///
70     /// [issue #57571]: https://github.com/rust-lang/rust/issues/57571
71     /// [attribute reference]: https://doc.rust-lang.org/nightly/reference/attributes.html
72     /// [future-incompatible]: ../index.md#future-incompatible-lints
73     pub ILL_FORMED_ATTRIBUTE_INPUT,
74     Deny,
75     "ill-formed attribute inputs that were previously accepted and used in practice",
76     @future_incompatible = FutureIncompatibleInfo {
77         reference: "issue #57571 <https://github.com/rust-lang/rust/issues/57571>",
78     };
79     crate_level_only
80 }
81
82 declare_lint! {
83     /// The `conflicting_repr_hints` lint detects [`repr` attributes] with
84     /// conflicting hints.
85     ///
86     /// [`repr` attributes]: https://doc.rust-lang.org/reference/type-layout.html#representations
87     ///
88     /// ### Example
89     ///
90     /// ```rust,compile_fail
91     /// #[repr(u32, u64)]
92     /// enum Foo {
93     ///     Variant1,
94     /// }
95     /// ```
96     ///
97     /// {{produces}}
98     ///
99     /// ### Explanation
100     ///
101     /// The compiler incorrectly accepted these conflicting representations in
102     /// the past. This is a [future-incompatible] lint to transition this to a
103     /// hard error in the future. See [issue #68585] for more details.
104     ///
105     /// To correct the issue, remove one of the conflicting hints.
106     ///
107     /// [issue #68585]: https://github.com/rust-lang/rust/issues/68585
108     /// [future-incompatible]: ../index.md#future-incompatible-lints
109     pub CONFLICTING_REPR_HINTS,
110     Deny,
111     "conflicts between `#[repr(..)]` hints that were previously accepted and used in practice",
112     @future_incompatible = FutureIncompatibleInfo {
113         reference: "issue #68585 <https://github.com/rust-lang/rust/issues/68585>",
114     };
115 }
116
117 declare_lint! {
118     /// The `meta_variable_misuse` lint detects possible meta-variable misuse
119     /// in macro definitions.
120     ///
121     /// ### Example
122     ///
123     /// ```rust,compile_fail
124     /// #![deny(meta_variable_misuse)]
125     ///
126     /// macro_rules! foo {
127     ///     () => {};
128     ///     ($( $i:ident = $($j:ident),+ );*) => { $( $( $i = $k; )+ )* };
129     /// }
130     ///
131     /// fn main() {
132     ///     foo!();
133     /// }
134     /// ```
135     ///
136     /// {{produces}}
137     ///
138     /// ### Explanation
139     ///
140     /// There are quite a few different ways a [`macro_rules`] macro can be
141     /// improperly defined. Many of these errors were previously only detected
142     /// when the macro was expanded or not at all. This lint is an attempt to
143     /// catch some of these problems when the macro is *defined*.
144     ///
145     /// This lint is "allow" by default because it may have false positives
146     /// and other issues. See [issue #61053] for more details.
147     ///
148     /// [`macro_rules`]: https://doc.rust-lang.org/reference/macros-by-example.html
149     /// [issue #61053]: https://github.com/rust-lang/rust/issues/61053
150     pub META_VARIABLE_MISUSE,
151     Allow,
152     "possible meta-variable misuse at macro definition"
153 }
154
155 declare_lint! {
156     /// The `incomplete_include` lint detects the use of the [`include!`]
157     /// macro with a file that contains more than one expression.
158     ///
159     /// [`include!`]: https://doc.rust-lang.org/std/macro.include.html
160     ///
161     /// ### Example
162     ///
163     /// ```rust,ignore (needs separate file)
164     /// fn main() {
165     ///     include!("foo.txt");
166     /// }
167     /// ```
168     ///
169     /// where the file `foo.txt` contains:
170     ///
171     /// ```text
172     /// println!("hi!");
173     /// ```
174     ///
175     /// produces:
176     ///
177     /// ```text
178     /// error: include macro expected single expression in source
179     ///  --> foo.txt:1:14
180     ///   |
181     /// 1 | println!("1");
182     ///   |              ^
183     ///   |
184     ///   = note: `#[deny(incomplete_include)]` on by default
185     /// ```
186     ///
187     /// ### Explanation
188     ///
189     /// The [`include!`] macro is currently only intended to be used to
190     /// include a single [expression] or multiple [items]. Historically it
191     /// would ignore any contents after the first expression, but that can be
192     /// confusing. In the example above, the `println!` expression ends just
193     /// before the semicolon, making the semicolon "extra" information that is
194     /// ignored. Perhaps even more surprising, if the included file had
195     /// multiple print statements, the subsequent ones would be ignored!
196     ///
197     /// One workaround is to place the contents in braces to create a [block
198     /// expression]. Also consider alternatives, like using functions to
199     /// encapsulate the expressions, or use [proc-macros].
200     ///
201     /// This is a lint instead of a hard error because existing projects were
202     /// found to hit this error. To be cautious, it is a lint for now. The
203     /// future semantics of the `include!` macro are also uncertain, see
204     /// [issue #35560].
205     ///
206     /// [items]: https://doc.rust-lang.org/reference/items.html
207     /// [expression]: https://doc.rust-lang.org/reference/expressions.html
208     /// [block expression]: https://doc.rust-lang.org/reference/expressions/block-expr.html
209     /// [proc-macros]: https://doc.rust-lang.org/reference/procedural-macros.html
210     /// [issue #35560]: https://github.com/rust-lang/rust/issues/35560
211     pub INCOMPLETE_INCLUDE,
212     Deny,
213     "trailing content in included file"
214 }
215
216 declare_lint! {
217     /// The `arithmetic_overflow` lint detects that an arithmetic operation
218     /// will [overflow].
219     ///
220     /// [overflow]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#overflow
221     ///
222     /// ### Example
223     ///
224     /// ```rust,compile_fail
225     /// 1_i32 << 32;
226     /// ```
227     ///
228     /// {{produces}}
229     ///
230     /// ### Explanation
231     ///
232     /// It is very likely a mistake to perform an arithmetic operation that
233     /// overflows its value. If the compiler is able to detect these kinds of
234     /// overflows at compile-time, it will trigger this lint. Consider
235     /// adjusting the expression to avoid overflow, or use a data type that
236     /// will not overflow.
237     pub ARITHMETIC_OVERFLOW,
238     Deny,
239     "arithmetic operation overflows"
240 }
241
242 declare_lint! {
243     /// The `unconditional_panic` lint detects an operation that will cause a
244     /// panic at runtime.
245     ///
246     /// ### Example
247     ///
248     /// ```rust,compile_fail
249     /// # #![allow(unused)]
250     /// let x = 1 / 0;
251     /// ```
252     ///
253     /// {{produces}}
254     ///
255     /// ### Explanation
256     ///
257     /// This lint detects code that is very likely incorrect because it will
258     /// always panic, such as division by zero and out-of-bounds array
259     /// accesses. Consider adjusting your code if this is a bug, or using the
260     /// `panic!` or `unreachable!` macro instead in case the panic is intended.
261     pub UNCONDITIONAL_PANIC,
262     Deny,
263     "operation will cause a panic at runtime"
264 }
265
266 declare_lint! {
267     /// The `const_err` lint detects an erroneous expression while doing
268     /// constant evaluation.
269     ///
270     /// ### Example
271     ///
272     /// ```rust,compile_fail
273     /// #![allow(unconditional_panic)]
274     /// const C: i32 = 1/0;
275     /// ```
276     ///
277     /// {{produces}}
278     ///
279     /// ### Explanation
280     ///
281     /// This lint detects constants that fail to evaluate. Allowing the lint will accept the
282     /// constant declaration, but any use of this constant will still lead to a hard error. This is
283     /// a future incompatibility lint; the plan is to eventually entirely forbid even declaring
284     /// constants that cannot be evaluated.  See [issue #71800] for more details.
285     ///
286     /// [issue #71800]: https://github.com/rust-lang/rust/issues/71800
287     pub CONST_ERR,
288     Deny,
289     "constant evaluation encountered erroneous expression",
290     @future_incompatible = FutureIncompatibleInfo {
291         reference: "issue #71800 <https://github.com/rust-lang/rust/issues/71800>",
292     };
293     report_in_external_macro
294 }
295
296 declare_lint! {
297     /// The `unused_imports` lint detects imports that are never used.
298     ///
299     /// ### Example
300     ///
301     /// ```rust
302     /// use std::collections::HashMap;
303     /// ```
304     ///
305     /// {{produces}}
306     ///
307     /// ### Explanation
308     ///
309     /// Unused imports may signal a mistake or unfinished code, and clutter
310     /// the code, and should be removed. If you intended to re-export the item
311     /// to make it available outside of the module, add a visibility modifier
312     /// like `pub`.
313     pub UNUSED_IMPORTS,
314     Warn,
315     "imports that are never used"
316 }
317
318 declare_lint! {
319     /// The `must_not_suspend` lint guards against values that shouldn't be held across suspend points
320     /// (`.await`)
321     ///
322     /// ### Example
323     ///
324     /// ```rust
325     /// #![feature(must_not_suspend)]
326     /// #![warn(must_not_suspend)]
327     ///
328     /// #[must_not_suspend]
329     /// struct SyncThing {}
330     ///
331     /// async fn yield_now() {}
332     ///
333     /// pub async fn uhoh() {
334     ///     let guard = SyncThing {};
335     ///     yield_now().await;
336     /// }
337     /// ```
338     ///
339     /// {{produces}}
340     ///
341     /// ### Explanation
342     ///
343     /// The `must_not_suspend` lint detects values that are marked with the `#[must_not_suspend]`
344     /// attribute being held across suspend points. A "suspend" point is usually a `.await` in an async
345     /// function.
346     ///
347     /// This attribute can be used to mark values that are semantically incorrect across suspends
348     /// (like certain types of timers), values that have async alternatives, and values that
349     /// regularly cause problems with the `Send`-ness of async fn's returned futures (like
350     /// `MutexGuard`'s)
351     ///
352     pub MUST_NOT_SUSPEND,
353     Allow,
354     "use of a `#[must_not_suspend]` value across a yield point",
355     @feature_gate = rustc_span::symbol::sym::must_not_suspend;
356 }
357
358 declare_lint! {
359     /// The `unused_extern_crates` lint guards against `extern crate` items
360     /// that are never used.
361     ///
362     /// ### Example
363     ///
364     /// ```rust,compile_fail
365     /// #![deny(unused_extern_crates)]
366     /// extern crate proc_macro;
367     /// ```
368     ///
369     /// {{produces}}
370     ///
371     /// ### Explanation
372     ///
373     /// `extern crate` items that are unused have no effect and should be
374     /// removed. Note that there are some cases where specifying an `extern
375     /// crate` is desired for the side effect of ensuring the given crate is
376     /// linked, even though it is not otherwise directly referenced. The lint
377     /// can be silenced by aliasing the crate to an underscore, such as
378     /// `extern crate foo as _`. Also note that it is no longer idiomatic to
379     /// use `extern crate` in the [2018 edition], as extern crates are now
380     /// automatically added in scope.
381     ///
382     /// This lint is "allow" by default because it can be noisy, and produce
383     /// false-positives. If a dependency is being removed from a project, it
384     /// is recommended to remove it from the build configuration (such as
385     /// `Cargo.toml`) to ensure stale build entries aren't left behind.
386     ///
387     /// [2018 edition]: https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html#no-more-extern-crate
388     pub UNUSED_EXTERN_CRATES,
389     Allow,
390     "extern crates that are never used"
391 }
392
393 declare_lint! {
394     /// The `unused_crate_dependencies` lint detects crate dependencies that
395     /// are never used.
396     ///
397     /// ### Example
398     ///
399     /// ```rust,ignore (needs extern crate)
400     /// #![deny(unused_crate_dependencies)]
401     /// ```
402     ///
403     /// This will produce:
404     ///
405     /// ```text
406     /// error: external crate `regex` unused in `lint_example`: remove the dependency or add `use regex as _;`
407     ///   |
408     /// note: the lint level is defined here
409     ///  --> src/lib.rs:1:9
410     ///   |
411     /// 1 | #![deny(unused_crate_dependencies)]
412     ///   |         ^^^^^^^^^^^^^^^^^^^^^^^^^
413     /// ```
414     ///
415     /// ### Explanation
416     ///
417     /// After removing the code that uses a dependency, this usually also
418     /// requires removing the dependency from the build configuration.
419     /// However, sometimes that step can be missed, which leads to time wasted
420     /// building dependencies that are no longer used. This lint can be
421     /// enabled to detect dependencies that are never used (more specifically,
422     /// any dependency passed with the `--extern` command-line flag that is
423     /// never referenced via [`use`], [`extern crate`], or in any [path]).
424     ///
425     /// This lint is "allow" by default because it can provide false positives
426     /// depending on how the build system is configured. For example, when
427     /// using Cargo, a "package" consists of multiple crates (such as a
428     /// library and a binary), but the dependencies are defined for the
429     /// package as a whole. If there is a dependency that is only used in the
430     /// binary, but not the library, then the lint will be incorrectly issued
431     /// in the library.
432     ///
433     /// [path]: https://doc.rust-lang.org/reference/paths.html
434     /// [`use`]: https://doc.rust-lang.org/reference/items/use-declarations.html
435     /// [`extern crate`]: https://doc.rust-lang.org/reference/items/extern-crates.html
436     pub UNUSED_CRATE_DEPENDENCIES,
437     Allow,
438     "crate dependencies that are never used",
439     crate_level_only
440 }
441
442 declare_lint! {
443     /// The `unused_qualifications` lint detects unnecessarily qualified
444     /// names.
445     ///
446     /// ### Example
447     ///
448     /// ```rust,compile_fail
449     /// #![deny(unused_qualifications)]
450     /// mod foo {
451     ///     pub fn bar() {}
452     /// }
453     ///
454     /// fn main() {
455     ///     use foo::bar;
456     ///     foo::bar();
457     /// }
458     /// ```
459     ///
460     /// {{produces}}
461     ///
462     /// ### Explanation
463     ///
464     /// If an item from another module is already brought into scope, then
465     /// there is no need to qualify it in this case. You can call `bar()`
466     /// directly, without the `foo::`.
467     ///
468     /// This lint is "allow" by default because it is somewhat pedantic, and
469     /// doesn't indicate an actual problem, but rather a stylistic choice, and
470     /// can be noisy when refactoring or moving around code.
471     pub UNUSED_QUALIFICATIONS,
472     Allow,
473     "detects unnecessarily qualified names"
474 }
475
476 declare_lint! {
477     /// The `unknown_lints` lint detects unrecognized lint attribute.
478     ///
479     /// ### Example
480     ///
481     /// ```rust
482     /// #![allow(not_a_real_lint)]
483     /// ```
484     ///
485     /// {{produces}}
486     ///
487     /// ### Explanation
488     ///
489     /// It is usually a mistake to specify a lint that does not exist. Check
490     /// the spelling, and check the lint listing for the correct name. Also
491     /// consider if you are using an old version of the compiler, and the lint
492     /// is only available in a newer version.
493     pub UNKNOWN_LINTS,
494     Warn,
495     "unrecognized lint attribute"
496 }
497
498 declare_lint! {
499     /// The `unused_variables` lint detects variables which are not used in
500     /// any way.
501     ///
502     /// ### Example
503     ///
504     /// ```rust
505     /// let x = 5;
506     /// ```
507     ///
508     /// {{produces}}
509     ///
510     /// ### Explanation
511     ///
512     /// Unused variables may signal a mistake or unfinished code. To silence
513     /// the warning for the individual variable, prefix it with an underscore
514     /// such as `_x`.
515     pub UNUSED_VARIABLES,
516     Warn,
517     "detect variables which are not used in any way"
518 }
519
520 declare_lint! {
521     /// The `unused_assignments` lint detects assignments that will never be read.
522     ///
523     /// ### Example
524     ///
525     /// ```rust
526     /// let mut x = 5;
527     /// x = 6;
528     /// ```
529     ///
530     /// {{produces}}
531     ///
532     /// ### Explanation
533     ///
534     /// Unused assignments may signal a mistake or unfinished code. If the
535     /// variable is never used after being assigned, then the assignment can
536     /// be removed. Variables with an underscore prefix such as `_x` will not
537     /// trigger this lint.
538     pub UNUSED_ASSIGNMENTS,
539     Warn,
540     "detect assignments that will never be read"
541 }
542
543 declare_lint! {
544     /// The `dead_code` lint detects unused, unexported items.
545     ///
546     /// ### Example
547     ///
548     /// ```rust
549     /// fn foo() {}
550     /// ```
551     ///
552     /// {{produces}}
553     ///
554     /// ### Explanation
555     ///
556     /// Dead code may signal a mistake or unfinished code. To silence the
557     /// warning for individual items, prefix the name with an underscore such
558     /// as `_foo`. If it was intended to expose the item outside of the crate,
559     /// consider adding a visibility modifier like `pub`. Otherwise consider
560     /// removing the unused code.
561     pub DEAD_CODE,
562     Warn,
563     "detect unused, unexported items"
564 }
565
566 declare_lint! {
567     /// The `unused_attributes` lint detects attributes that were not used by
568     /// the compiler.
569     ///
570     /// ### Example
571     ///
572     /// ```rust
573     /// #![ignore]
574     /// ```
575     ///
576     /// {{produces}}
577     ///
578     /// ### Explanation
579     ///
580     /// Unused [attributes] may indicate the attribute is placed in the wrong
581     /// position. Consider removing it, or placing it in the correct position.
582     /// Also consider if you intended to use an _inner attribute_ (with a `!`
583     /// such as `#![allow(unused)]`) which applies to the item the attribute
584     /// is within, or an _outer attribute_ (without a `!` such as
585     /// `#[allow(unused)]`) which applies to the item *following* the
586     /// attribute.
587     ///
588     /// [attributes]: https://doc.rust-lang.org/reference/attributes.html
589     pub UNUSED_ATTRIBUTES,
590     Warn,
591     "detects attributes that were not used by the compiler"
592 }
593
594 declare_lint! {
595     /// The `unreachable_code` lint detects unreachable code paths.
596     ///
597     /// ### Example
598     ///
599     /// ```rust,no_run
600     /// panic!("we never go past here!");
601     ///
602     /// let x = 5;
603     /// ```
604     ///
605     /// {{produces}}
606     ///
607     /// ### Explanation
608     ///
609     /// Unreachable code may signal a mistake or unfinished code. If the code
610     /// is no longer in use, consider removing it.
611     pub UNREACHABLE_CODE,
612     Warn,
613     "detects unreachable code paths",
614     report_in_external_macro
615 }
616
617 declare_lint! {
618     /// The `unreachable_patterns` lint detects unreachable patterns.
619     ///
620     /// ### Example
621     ///
622     /// ```rust
623     /// let x = 5;
624     /// match x {
625     ///     y => (),
626     ///     5 => (),
627     /// }
628     /// ```
629     ///
630     /// {{produces}}
631     ///
632     /// ### Explanation
633     ///
634     /// This usually indicates a mistake in how the patterns are specified or
635     /// ordered. In this example, the `y` pattern will always match, so the
636     /// five is impossible to reach. Remember, match arms match in order, you
637     /// probably wanted to put the `5` case above the `y` case.
638     pub UNREACHABLE_PATTERNS,
639     Warn,
640     "detects unreachable patterns"
641 }
642
643 declare_lint! {
644     /// The `overlapping_range_endpoints` lint detects `match` arms that have [range patterns] that
645     /// overlap on their endpoints.
646     ///
647     /// [range patterns]: https://doc.rust-lang.org/nightly/reference/patterns.html#range-patterns
648     ///
649     /// ### Example
650     ///
651     /// ```rust
652     /// let x = 123u8;
653     /// match x {
654     ///     0..=100 => { println!("small"); }
655     ///     100..=255 => { println!("large"); }
656     /// }
657     /// ```
658     ///
659     /// {{produces}}
660     ///
661     /// ### Explanation
662     ///
663     /// It is likely a mistake to have range patterns in a match expression that overlap in this
664     /// way. Check that the beginning and end values are what you expect, and keep in mind that
665     /// with `..=` the left and right bounds are inclusive.
666     pub OVERLAPPING_RANGE_ENDPOINTS,
667     Warn,
668     "detects range patterns with overlapping endpoints"
669 }
670
671 declare_lint! {
672     /// The `bindings_with_variant_name` lint detects pattern bindings with
673     /// the same name as one of the matched variants.
674     ///
675     /// ### Example
676     ///
677     /// ```rust
678     /// pub enum Enum {
679     ///     Foo,
680     ///     Bar,
681     /// }
682     ///
683     /// pub fn foo(x: Enum) {
684     ///     match x {
685     ///         Foo => {}
686     ///         Bar => {}
687     ///     }
688     /// }
689     /// ```
690     ///
691     /// {{produces}}
692     ///
693     /// ### Explanation
694     ///
695     /// It is usually a mistake to specify an enum variant name as an
696     /// [identifier pattern]. In the example above, the `match` arms are
697     /// specifying a variable name to bind the value of `x` to. The second arm
698     /// is ignored because the first one matches *all* values. The likely
699     /// intent is that the arm was intended to match on the enum variant.
700     ///
701     /// Two possible solutions are:
702     ///
703     /// * Specify the enum variant using a [path pattern], such as
704     ///   `Enum::Foo`.
705     /// * Bring the enum variants into local scope, such as adding `use
706     ///   Enum::*;` to the beginning of the `foo` function in the example
707     ///   above.
708     ///
709     /// [identifier pattern]: https://doc.rust-lang.org/reference/patterns.html#identifier-patterns
710     /// [path pattern]: https://doc.rust-lang.org/reference/patterns.html#path-patterns
711     pub BINDINGS_WITH_VARIANT_NAME,
712     Warn,
713     "detects pattern bindings with the same name as one of the matched variants"
714 }
715
716 declare_lint! {
717     /// The `unused_macros` lint detects macros that were not used.
718     ///
719     /// ### Example
720     ///
721     /// ```rust
722     /// macro_rules! unused {
723     ///     () => {};
724     /// }
725     ///
726     /// fn main() {
727     /// }
728     /// ```
729     ///
730     /// {{produces}}
731     ///
732     /// ### Explanation
733     ///
734     /// Unused macros may signal a mistake or unfinished code. To silence the
735     /// warning for the individual macro, prefix the name with an underscore
736     /// such as `_my_macro`. If you intended to export the macro to make it
737     /// available outside of the crate, use the [`macro_export` attribute].
738     ///
739     /// [`macro_export` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope
740     pub UNUSED_MACROS,
741     Warn,
742     "detects macros that were not used"
743 }
744
745 declare_lint! {
746     /// The `warnings` lint allows you to change the level of other
747     /// lints which produce warnings.
748     ///
749     /// ### Example
750     ///
751     /// ```rust
752     /// #![deny(warnings)]
753     /// fn foo() {}
754     /// ```
755     ///
756     /// {{produces}}
757     ///
758     /// ### Explanation
759     ///
760     /// The `warnings` lint is a bit special; by changing its level, you
761     /// change every other warning that would produce a warning to whatever
762     /// value you'd like. As such, you won't ever trigger this lint in your
763     /// code directly.
764     pub WARNINGS,
765     Warn,
766     "mass-change the level for lints which produce warnings"
767 }
768
769 declare_lint! {
770     /// The `unused_features` lint detects unused or unknown features found in
771     /// crate-level [`feature` attributes].
772     ///
773     /// [`feature` attributes]: https://doc.rust-lang.org/nightly/unstable-book/
774     ///
775     /// Note: This lint is currently not functional, see [issue #44232] for
776     /// more details.
777     ///
778     /// [issue #44232]: https://github.com/rust-lang/rust/issues/44232
779     pub UNUSED_FEATURES,
780     Warn,
781     "unused features found in crate-level `#[feature]` directives"
782 }
783
784 declare_lint! {
785     /// The `stable_features` lint detects a [`feature` attribute] that
786     /// has since been made stable.
787     ///
788     /// [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/
789     ///
790     /// ### Example
791     ///
792     /// ```rust
793     /// #![feature(test_accepted_feature)]
794     /// fn main() {}
795     /// ```
796     ///
797     /// {{produces}}
798     ///
799     /// ### Explanation
800     ///
801     /// When a feature is stabilized, it is no longer necessary to include a
802     /// `#![feature]` attribute for it. To fix, simply remove the
803     /// `#![feature]` attribute.
804     pub STABLE_FEATURES,
805     Warn,
806     "stable features found in `#[feature]` directive"
807 }
808
809 declare_lint! {
810     /// The `unknown_crate_types` lint detects an unknown crate type found in
811     /// a [`crate_type` attribute].
812     ///
813     /// ### Example
814     ///
815     /// ```rust,compile_fail
816     /// #![crate_type="lol"]
817     /// fn main() {}
818     /// ```
819     ///
820     /// {{produces}}
821     ///
822     /// ### Explanation
823     ///
824     /// An unknown value give to the `crate_type` attribute is almost
825     /// certainly a mistake.
826     ///
827     /// [`crate_type` attribute]: https://doc.rust-lang.org/reference/linkage.html
828     pub UNKNOWN_CRATE_TYPES,
829     Deny,
830     "unknown crate type found in `#[crate_type]` directive",
831     crate_level_only
832 }
833
834 declare_lint! {
835     /// The `trivial_casts` lint detects trivial casts which could be replaced
836     /// with coercion, which may require [type ascription] or a temporary
837     /// variable.
838     ///
839     /// ### Example
840     ///
841     /// ```rust,compile_fail
842     /// #![deny(trivial_casts)]
843     /// let x: &u32 = &42;
844     /// let y = x as *const u32;
845     /// ```
846     ///
847     /// {{produces}}
848     ///
849     /// ### Explanation
850     ///
851     /// A trivial cast is a cast `e as T` where `e` has type `U` and `U` is a
852     /// subtype of `T`. This type of cast is usually unnecessary, as it can be
853     /// usually be inferred.
854     ///
855     /// This lint is "allow" by default because there are situations, such as
856     /// with FFI interfaces or complex type aliases, where it triggers
857     /// incorrectly, or in situations where it will be more difficult to
858     /// clearly express the intent. It may be possible that this will become a
859     /// warning in the future, possibly with [type ascription] providing a
860     /// convenient way to work around the current issues. See [RFC 401] for
861     /// historical context.
862     ///
863     /// [type ascription]: https://github.com/rust-lang/rust/issues/23416
864     /// [RFC 401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md
865     pub TRIVIAL_CASTS,
866     Allow,
867     "detects trivial casts which could be removed"
868 }
869
870 declare_lint! {
871     /// The `trivial_numeric_casts` lint detects trivial numeric casts of types
872     /// which could be removed.
873     ///
874     /// ### Example
875     ///
876     /// ```rust,compile_fail
877     /// #![deny(trivial_numeric_casts)]
878     /// let x = 42_i32 as i32;
879     /// ```
880     ///
881     /// {{produces}}
882     ///
883     /// ### Explanation
884     ///
885     /// A trivial numeric cast is a cast of a numeric type to the same numeric
886     /// type. This type of cast is usually unnecessary.
887     ///
888     /// This lint is "allow" by default because there are situations, such as
889     /// with FFI interfaces or complex type aliases, where it triggers
890     /// incorrectly, or in situations where it will be more difficult to
891     /// clearly express the intent. It may be possible that this will become a
892     /// warning in the future, possibly with [type ascription] providing a
893     /// convenient way to work around the current issues. See [RFC 401] for
894     /// historical context.
895     ///
896     /// [type ascription]: https://github.com/rust-lang/rust/issues/23416
897     /// [RFC 401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md
898     pub TRIVIAL_NUMERIC_CASTS,
899     Allow,
900     "detects trivial casts of numeric types which could be removed"
901 }
902
903 declare_lint! {
904     /// The `private_in_public` lint detects private items in public
905     /// interfaces not caught by the old implementation.
906     ///
907     /// ### Example
908     ///
909     /// ```rust
910     /// # #![allow(unused)]
911     /// struct SemiPriv;
912     ///
913     /// mod m1 {
914     ///     struct Priv;
915     ///     impl super::SemiPriv {
916     ///         pub fn f(_: Priv) {}
917     ///     }
918     /// }
919     /// # fn main() {}
920     /// ```
921     ///
922     /// {{produces}}
923     ///
924     /// ### Explanation
925     ///
926     /// The visibility rules are intended to prevent exposing private items in
927     /// public interfaces. This is a [future-incompatible] lint to transition
928     /// this to a hard error in the future. See [issue #34537] for more
929     /// details.
930     ///
931     /// [issue #34537]: https://github.com/rust-lang/rust/issues/34537
932     /// [future-incompatible]: ../index.md#future-incompatible-lints
933     pub PRIVATE_IN_PUBLIC,
934     Warn,
935     "detect private items in public interfaces not caught by the old implementation",
936     @future_incompatible = FutureIncompatibleInfo {
937         reference: "issue #34537 <https://github.com/rust-lang/rust/issues/34537>",
938     };
939 }
940
941 declare_lint! {
942     /// The `exported_private_dependencies` lint detects private dependencies
943     /// that are exposed in a public interface.
944     ///
945     /// ### Example
946     ///
947     /// ```rust,ignore (needs-dependency)
948     /// pub fn foo() -> Option<some_private_dependency::Thing> {
949     ///     None
950     /// }
951     /// ```
952     ///
953     /// This will produce:
954     ///
955     /// ```text
956     /// warning: type `bar::Thing` from private dependency 'bar' in public interface
957     ///  --> src/lib.rs:3:1
958     ///   |
959     /// 3 | pub fn foo() -> Option<bar::Thing> {
960     ///   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
961     ///   |
962     ///   = note: `#[warn(exported_private_dependencies)]` on by default
963     /// ```
964     ///
965     /// ### Explanation
966     ///
967     /// Dependencies can be marked as "private" to indicate that they are not
968     /// exposed in the public interface of a crate. This can be used by Cargo
969     /// to independently resolve those dependencies because it can assume it
970     /// does not need to unify them with other packages using that same
971     /// dependency. This lint is an indication of a violation of that
972     /// contract.
973     ///
974     /// To fix this, avoid exposing the dependency in your public interface.
975     /// Or, switch the dependency to a public dependency.
976     ///
977     /// Note that support for this is only available on the nightly channel.
978     /// See [RFC 1977] for more details, as well as the [Cargo documentation].
979     ///
980     /// [RFC 1977]: https://github.com/rust-lang/rfcs/blob/master/text/1977-public-private-dependencies.md
981     /// [Cargo documentation]: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#public-dependency
982     pub EXPORTED_PRIVATE_DEPENDENCIES,
983     Warn,
984     "public interface leaks type from a private dependency"
985 }
986
987 declare_lint! {
988     /// The `pub_use_of_private_extern_crate` lint detects a specific
989     /// situation of re-exporting a private `extern crate`.
990     ///
991     /// ### Example
992     ///
993     /// ```rust,compile_fail
994     /// extern crate core;
995     /// pub use core as reexported_core;
996     /// ```
997     ///
998     /// {{produces}}
999     ///
1000     /// ### Explanation
1001     ///
1002     /// A public `use` declaration should not be used to publicly re-export a
1003     /// private `extern crate`. `pub extern crate` should be used instead.
1004     ///
1005     /// This was historically allowed, but is not the intended behavior
1006     /// according to the visibility rules. This is a [future-incompatible]
1007     /// lint to transition this to a hard error in the future. See [issue
1008     /// #34537] for more details.
1009     ///
1010     /// [issue #34537]: https://github.com/rust-lang/rust/issues/34537
1011     /// [future-incompatible]: ../index.md#future-incompatible-lints
1012     pub PUB_USE_OF_PRIVATE_EXTERN_CRATE,
1013     Deny,
1014     "detect public re-exports of private extern crates",
1015     @future_incompatible = FutureIncompatibleInfo {
1016         reference: "issue #34537 <https://github.com/rust-lang/rust/issues/34537>",
1017     };
1018 }
1019
1020 declare_lint! {
1021     /// The `invalid_type_param_default` lint detects type parameter defaults
1022     /// erroneously allowed in an invalid location.
1023     ///
1024     /// ### Example
1025     ///
1026     /// ```rust,compile_fail
1027     /// fn foo<T=i32>(t: T) {}
1028     /// ```
1029     ///
1030     /// {{produces}}
1031     ///
1032     /// ### Explanation
1033     ///
1034     /// Default type parameters were only intended to be allowed in certain
1035     /// situations, but historically the compiler allowed them everywhere.
1036     /// This is a [future-incompatible] lint to transition this to a hard
1037     /// error in the future. See [issue #36887] for more details.
1038     ///
1039     /// [issue #36887]: https://github.com/rust-lang/rust/issues/36887
1040     /// [future-incompatible]: ../index.md#future-incompatible-lints
1041     pub INVALID_TYPE_PARAM_DEFAULT,
1042     Deny,
1043     "type parameter default erroneously allowed in invalid location",
1044     @future_incompatible = FutureIncompatibleInfo {
1045         reference: "issue #36887 <https://github.com/rust-lang/rust/issues/36887>",
1046     };
1047 }
1048
1049 declare_lint! {
1050     /// The `renamed_and_removed_lints` lint detects lints that have been
1051     /// renamed or removed.
1052     ///
1053     /// ### Example
1054     ///
1055     /// ```rust
1056     /// #![deny(raw_pointer_derive)]
1057     /// ```
1058     ///
1059     /// {{produces}}
1060     ///
1061     /// ### Explanation
1062     ///
1063     /// To fix this, either remove the lint or use the new name. This can help
1064     /// avoid confusion about lints that are no longer valid, and help
1065     /// maintain consistency for renamed lints.
1066     pub RENAMED_AND_REMOVED_LINTS,
1067     Warn,
1068     "lints that have been renamed or removed"
1069 }
1070
1071 declare_lint! {
1072     /// The `unaligned_references` lint detects unaligned references to fields
1073     /// of [packed] structs.
1074     ///
1075     /// [packed]: https://doc.rust-lang.org/reference/type-layout.html#the-alignment-modifiers
1076     ///
1077     /// ### Example
1078     ///
1079     /// ```rust,compile_fail
1080     /// #![deny(unaligned_references)]
1081     ///
1082     /// #[repr(packed)]
1083     /// pub struct Foo {
1084     ///     field1: u64,
1085     ///     field2: u8,
1086     /// }
1087     ///
1088     /// fn main() {
1089     ///     unsafe {
1090     ///         let foo = Foo { field1: 0, field2: 0 };
1091     ///         let _ = &foo.field1;
1092     ///         println!("{}", foo.field1); // An implicit `&` is added here, triggering the lint.
1093     ///     }
1094     /// }
1095     /// ```
1096     ///
1097     /// {{produces}}
1098     ///
1099     /// ### Explanation
1100     ///
1101     /// Creating a reference to an insufficiently aligned packed field is [undefined behavior] and
1102     /// should be disallowed. Using an `unsafe` block does not change anything about this. Instead,
1103     /// the code should do a copy of the data in the packed field or use raw pointers and unaligned
1104     /// accesses. See [issue #82523] for more information.
1105     ///
1106     /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
1107     /// [issue #82523]: https://github.com/rust-lang/rust/issues/82523
1108     pub UNALIGNED_REFERENCES,
1109     Warn,
1110     "detects unaligned references to fields of packed structs",
1111     @future_incompatible = FutureIncompatibleInfo {
1112         reference: "issue #82523 <https://github.com/rust-lang/rust/issues/82523>",
1113     };
1114     report_in_external_macro
1115 }
1116
1117 declare_lint! {
1118     /// The `const_item_mutation` lint detects attempts to mutate a `const`
1119     /// item.
1120     ///
1121     /// ### Example
1122     ///
1123     /// ```rust
1124     /// const FOO: [i32; 1] = [0];
1125     ///
1126     /// fn main() {
1127     ///     FOO[0] = 1;
1128     ///     // This will print "[0]".
1129     ///     println!("{:?}", FOO);
1130     /// }
1131     /// ```
1132     ///
1133     /// {{produces}}
1134     ///
1135     /// ### Explanation
1136     ///
1137     /// Trying to directly mutate a `const` item is almost always a mistake.
1138     /// What is happening in the example above is that a temporary copy of the
1139     /// `const` is mutated, but the original `const` is not. Each time you
1140     /// refer to the `const` by name (such as `FOO` in the example above), a
1141     /// separate copy of the value is inlined at that location.
1142     ///
1143     /// This lint checks for writing directly to a field (`FOO.field =
1144     /// some_value`) or array entry (`FOO[0] = val`), or taking a mutable
1145     /// reference to the const item (`&mut FOO`), including through an
1146     /// autoderef (`FOO.some_mut_self_method()`).
1147     ///
1148     /// There are various alternatives depending on what you are trying to
1149     /// accomplish:
1150     ///
1151     /// * First, always reconsider using mutable globals, as they can be
1152     ///   difficult to use correctly, and can make the code more difficult to
1153     ///   use or understand.
1154     /// * If you are trying to perform a one-time initialization of a global:
1155     ///     * If the value can be computed at compile-time, consider using
1156     ///       const-compatible values (see [Constant Evaluation]).
1157     ///     * For more complex single-initialization cases, consider using a
1158     ///       third-party crate, such as [`lazy_static`] or [`once_cell`].
1159     ///     * If you are using the [nightly channel], consider the new
1160     ///       [`lazy`] module in the standard library.
1161     /// * If you truly need a mutable global, consider using a [`static`],
1162     ///   which has a variety of options:
1163     ///   * Simple data types can be directly defined and mutated with an
1164     ///     [`atomic`] type.
1165     ///   * More complex types can be placed in a synchronization primitive
1166     ///     like a [`Mutex`], which can be initialized with one of the options
1167     ///     listed above.
1168     ///   * A [mutable `static`] is a low-level primitive, requiring unsafe.
1169     ///     Typically This should be avoided in preference of something
1170     ///     higher-level like one of the above.
1171     ///
1172     /// [Constant Evaluation]: https://doc.rust-lang.org/reference/const_eval.html
1173     /// [`static`]: https://doc.rust-lang.org/reference/items/static-items.html
1174     /// [mutable `static`]: https://doc.rust-lang.org/reference/items/static-items.html#mutable-statics
1175     /// [`lazy`]: https://doc.rust-lang.org/nightly/std/lazy/index.html
1176     /// [`lazy_static`]: https://crates.io/crates/lazy_static
1177     /// [`once_cell`]: https://crates.io/crates/once_cell
1178     /// [`atomic`]: https://doc.rust-lang.org/std/sync/atomic/index.html
1179     /// [`Mutex`]: https://doc.rust-lang.org/std/sync/struct.Mutex.html
1180     pub CONST_ITEM_MUTATION,
1181     Warn,
1182     "detects attempts to mutate a `const` item",
1183 }
1184
1185 declare_lint! {
1186     /// The `patterns_in_fns_without_body` lint detects `mut` identifier
1187     /// patterns as a parameter in functions without a body.
1188     ///
1189     /// ### Example
1190     ///
1191     /// ```rust,compile_fail
1192     /// trait Trait {
1193     ///     fn foo(mut arg: u8);
1194     /// }
1195     /// ```
1196     ///
1197     /// {{produces}}
1198     ///
1199     /// ### Explanation
1200     ///
1201     /// To fix this, remove `mut` from the parameter in the trait definition;
1202     /// it can be used in the implementation. That is, the following is OK:
1203     ///
1204     /// ```rust
1205     /// trait Trait {
1206     ///     fn foo(arg: u8); // Removed `mut` here
1207     /// }
1208     ///
1209     /// impl Trait for i32 {
1210     ///     fn foo(mut arg: u8) { // `mut` here is OK
1211     ///
1212     ///     }
1213     /// }
1214     /// ```
1215     ///
1216     /// Trait definitions can define functions without a body to specify a
1217     /// function that implementors must define. The parameter names in the
1218     /// body-less functions are only allowed to be `_` or an [identifier] for
1219     /// documentation purposes (only the type is relevant). Previous versions
1220     /// of the compiler erroneously allowed [identifier patterns] with the
1221     /// `mut` keyword, but this was not intended to be allowed. This is a
1222     /// [future-incompatible] lint to transition this to a hard error in the
1223     /// future. See [issue #35203] for more details.
1224     ///
1225     /// [identifier]: https://doc.rust-lang.org/reference/identifiers.html
1226     /// [identifier patterns]: https://doc.rust-lang.org/reference/patterns.html#identifier-patterns
1227     /// [issue #35203]: https://github.com/rust-lang/rust/issues/35203
1228     /// [future-incompatible]: ../index.md#future-incompatible-lints
1229     pub PATTERNS_IN_FNS_WITHOUT_BODY,
1230     Deny,
1231     "patterns in functions without body were erroneously allowed",
1232     @future_incompatible = FutureIncompatibleInfo {
1233         reference: "issue #35203 <https://github.com/rust-lang/rust/issues/35203>",
1234     };
1235 }
1236
1237 declare_lint! {
1238     /// The `missing_fragment_specifier` lint is issued when an unused pattern in a
1239     /// `macro_rules!` macro definition has a meta-variable (e.g. `$e`) that is not
1240     /// followed by a fragment specifier (e.g. `:expr`).
1241     ///
1242     /// This warning can always be fixed by removing the unused pattern in the
1243     /// `macro_rules!` macro definition.
1244     ///
1245     /// ### Example
1246     ///
1247     /// ```rust,compile_fail
1248     /// macro_rules! foo {
1249     ///    () => {};
1250     ///    ($name) => { };
1251     /// }
1252     ///
1253     /// fn main() {
1254     ///    foo!();
1255     /// }
1256     /// ```
1257     ///
1258     /// {{produces}}
1259     ///
1260     /// ### Explanation
1261     ///
1262     /// To fix this, remove the unused pattern from the `macro_rules!` macro definition:
1263     ///
1264     /// ```rust
1265     /// macro_rules! foo {
1266     ///     () => {};
1267     /// }
1268     /// fn main() {
1269     ///     foo!();
1270     /// }
1271     /// ```
1272     pub MISSING_FRAGMENT_SPECIFIER,
1273     Deny,
1274     "detects missing fragment specifiers in unused `macro_rules!` patterns",
1275     @future_incompatible = FutureIncompatibleInfo {
1276         reference: "issue #40107 <https://github.com/rust-lang/rust/issues/40107>",
1277     };
1278 }
1279
1280 declare_lint! {
1281     /// The `late_bound_lifetime_arguments` lint detects generic lifetime
1282     /// arguments in path segments with late bound lifetime parameters.
1283     ///
1284     /// ### Example
1285     ///
1286     /// ```rust
1287     /// struct S;
1288     ///
1289     /// impl S {
1290     ///     fn late<'a, 'b>(self, _: &'a u8, _: &'b u8) {}
1291     /// }
1292     ///
1293     /// fn main() {
1294     ///     S.late::<'static>(&0, &0);
1295     /// }
1296     /// ```
1297     ///
1298     /// {{produces}}
1299     ///
1300     /// ### Explanation
1301     ///
1302     /// It is not clear how to provide arguments for early-bound lifetime
1303     /// parameters if they are intermixed with late-bound parameters in the
1304     /// same list. For now, providing any explicit arguments will trigger this
1305     /// lint if late-bound parameters are present, so in the future a solution
1306     /// can be adopted without hitting backward compatibility issues. This is
1307     /// a [future-incompatible] lint to transition this to a hard error in the
1308     /// future. See [issue #42868] for more details, along with a description
1309     /// of the difference between early and late-bound parameters.
1310     ///
1311     /// [issue #42868]: https://github.com/rust-lang/rust/issues/42868
1312     /// [future-incompatible]: ../index.md#future-incompatible-lints
1313     pub LATE_BOUND_LIFETIME_ARGUMENTS,
1314     Warn,
1315     "detects generic lifetime arguments in path segments with late bound lifetime parameters",
1316     @future_incompatible = FutureIncompatibleInfo {
1317         reference: "issue #42868 <https://github.com/rust-lang/rust/issues/42868>",
1318     };
1319 }
1320
1321 declare_lint! {
1322     /// The `order_dependent_trait_objects` lint detects a trait coherency
1323     /// violation that would allow creating two trait impls for the same
1324     /// dynamic trait object involving marker traits.
1325     ///
1326     /// ### Example
1327     ///
1328     /// ```rust,compile_fail
1329     /// pub trait Trait {}
1330     ///
1331     /// impl Trait for dyn Send + Sync { }
1332     /// impl Trait for dyn Sync + Send { }
1333     /// ```
1334     ///
1335     /// {{produces}}
1336     ///
1337     /// ### Explanation
1338     ///
1339     /// A previous bug caused the compiler to interpret traits with different
1340     /// orders (such as `Send + Sync` and `Sync + Send`) as distinct types
1341     /// when they were intended to be treated the same. This allowed code to
1342     /// define separate trait implementations when there should be a coherence
1343     /// error. This is a [future-incompatible] lint to transition this to a
1344     /// hard error in the future. See [issue #56484] for more details.
1345     ///
1346     /// [issue #56484]: https://github.com/rust-lang/rust/issues/56484
1347     /// [future-incompatible]: ../index.md#future-incompatible-lints
1348     pub ORDER_DEPENDENT_TRAIT_OBJECTS,
1349     Deny,
1350     "trait-object types were treated as different depending on marker-trait order",
1351     @future_incompatible = FutureIncompatibleInfo {
1352         reference: "issue #56484 <https://github.com/rust-lang/rust/issues/56484>",
1353     };
1354 }
1355
1356 declare_lint! {
1357     /// The `coherence_leak_check` lint detects conflicting implementations of
1358     /// a trait that are only distinguished by the old leak-check code.
1359     ///
1360     /// ### Example
1361     ///
1362     /// ```rust
1363     /// trait SomeTrait { }
1364     /// impl SomeTrait for for<'a> fn(&'a u8) { }
1365     /// impl<'a> SomeTrait for fn(&'a u8) { }
1366     /// ```
1367     ///
1368     /// {{produces}}
1369     ///
1370     /// ### Explanation
1371     ///
1372     /// In the past, the compiler would accept trait implementations for
1373     /// identical functions that differed only in where the lifetime binder
1374     /// appeared. Due to a change in the borrow checker implementation to fix
1375     /// several bugs, this is no longer allowed. However, since this affects
1376     /// existing code, this is a [future-incompatible] lint to transition this
1377     /// to a hard error in the future.
1378     ///
1379     /// Code relying on this pattern should introduce "[newtypes]",
1380     /// like `struct Foo(for<'a> fn(&'a u8))`.
1381     ///
1382     /// See [issue #56105] for more details.
1383     ///
1384     /// [issue #56105]: https://github.com/rust-lang/rust/issues/56105
1385     /// [newtypes]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#using-the-newtype-pattern-for-type-safety-and-abstraction
1386     /// [future-incompatible]: ../index.md#future-incompatible-lints
1387     pub COHERENCE_LEAK_CHECK,
1388     Warn,
1389     "distinct impls distinguished only by the leak-check code",
1390     @future_incompatible = FutureIncompatibleInfo {
1391         reference: "issue #56105 <https://github.com/rust-lang/rust/issues/56105>",
1392     };
1393 }
1394
1395 declare_lint! {
1396     /// The `deprecated` lint detects use of deprecated items.
1397     ///
1398     /// ### Example
1399     ///
1400     /// ```rust
1401     /// #[deprecated]
1402     /// fn foo() {}
1403     ///
1404     /// fn bar() {
1405     ///     foo();
1406     /// }
1407     /// ```
1408     ///
1409     /// {{produces}}
1410     ///
1411     /// ### Explanation
1412     ///
1413     /// Items may be marked "deprecated" with the [`deprecated` attribute] to
1414     /// indicate that they should no longer be used. Usually the attribute
1415     /// should include a note on what to use instead, or check the
1416     /// documentation.
1417     ///
1418     /// [`deprecated` attribute]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-deprecated-attribute
1419     pub DEPRECATED,
1420     Warn,
1421     "detects use of deprecated items",
1422     report_in_external_macro
1423 }
1424
1425 declare_lint! {
1426     /// The `unused_unsafe` lint detects unnecessary use of an `unsafe` block.
1427     ///
1428     /// ### Example
1429     ///
1430     /// ```rust
1431     /// unsafe {}
1432     /// ```
1433     ///
1434     /// {{produces}}
1435     ///
1436     /// ### Explanation
1437     ///
1438     /// If nothing within the block requires `unsafe`, then remove the
1439     /// `unsafe` marker because it is not required and may cause confusion.
1440     pub UNUSED_UNSAFE,
1441     Warn,
1442     "unnecessary use of an `unsafe` block"
1443 }
1444
1445 declare_lint! {
1446     /// The `unused_mut` lint detects mut variables which don't need to be
1447     /// mutable.
1448     ///
1449     /// ### Example
1450     ///
1451     /// ```rust
1452     /// let mut x = 5;
1453     /// ```
1454     ///
1455     /// {{produces}}
1456     ///
1457     /// ### Explanation
1458     ///
1459     /// The preferred style is to only mark variables as `mut` if it is
1460     /// required.
1461     pub UNUSED_MUT,
1462     Warn,
1463     "detect mut variables which don't need to be mutable"
1464 }
1465
1466 declare_lint! {
1467     /// The `unconditional_recursion` lint detects functions that cannot
1468     /// return without calling themselves.
1469     ///
1470     /// ### Example
1471     ///
1472     /// ```rust
1473     /// fn foo() {
1474     ///     foo();
1475     /// }
1476     /// ```
1477     ///
1478     /// {{produces}}
1479     ///
1480     /// ### Explanation
1481     ///
1482     /// It is usually a mistake to have a recursive call that does not have
1483     /// some condition to cause it to terminate. If you really intend to have
1484     /// an infinite loop, using a `loop` expression is recommended.
1485     pub UNCONDITIONAL_RECURSION,
1486     Warn,
1487     "functions that cannot return without calling themselves"
1488 }
1489
1490 declare_lint! {
1491     /// The `single_use_lifetimes` lint detects lifetimes that are only used
1492     /// once.
1493     ///
1494     /// ### Example
1495     ///
1496     /// ```rust,compile_fail
1497     /// #![deny(single_use_lifetimes)]
1498     ///
1499     /// fn foo<'a>(x: &'a u32) {}
1500     /// ```
1501     ///
1502     /// {{produces}}
1503     ///
1504     /// ### Explanation
1505     ///
1506     /// Specifying an explicit lifetime like `'a` in a function or `impl`
1507     /// should only be used to link together two things. Otherwise, you should
1508     /// just use `'_` to indicate that the lifetime is not linked to anything,
1509     /// or elide the lifetime altogether if possible.
1510     ///
1511     /// This lint is "allow" by default because it was introduced at a time
1512     /// when `'_` and elided lifetimes were first being introduced, and this
1513     /// lint would be too noisy. Also, there are some known false positives
1514     /// that it produces. See [RFC 2115] for historical context, and [issue
1515     /// #44752] for more details.
1516     ///
1517     /// [RFC 2115]: https://github.com/rust-lang/rfcs/blob/master/text/2115-argument-lifetimes.md
1518     /// [issue #44752]: https://github.com/rust-lang/rust/issues/44752
1519     pub SINGLE_USE_LIFETIMES,
1520     Allow,
1521     "detects lifetime parameters that are only used once"
1522 }
1523
1524 declare_lint! {
1525     /// The `unused_lifetimes` lint detects lifetime parameters that are never
1526     /// used.
1527     ///
1528     /// ### Example
1529     ///
1530     /// ```rust,compile_fail
1531     /// #[deny(unused_lifetimes)]
1532     ///
1533     /// pub fn foo<'a>() {}
1534     /// ```
1535     ///
1536     /// {{produces}}
1537     ///
1538     /// ### Explanation
1539     ///
1540     /// Unused lifetime parameters may signal a mistake or unfinished code.
1541     /// Consider removing the parameter.
1542     pub UNUSED_LIFETIMES,
1543     Allow,
1544     "detects lifetime parameters that are never used"
1545 }
1546
1547 declare_lint! {
1548     /// The `tyvar_behind_raw_pointer` lint detects raw pointer to an
1549     /// inference variable.
1550     ///
1551     /// ### Example
1552     ///
1553     /// ```rust,edition2015
1554     /// // edition 2015
1555     /// let data = std::ptr::null();
1556     /// let _ = &data as *const *const ();
1557     ///
1558     /// if data.is_null() {}
1559     /// ```
1560     ///
1561     /// {{produces}}
1562     ///
1563     /// ### Explanation
1564     ///
1565     /// This kind of inference was previously allowed, but with the future
1566     /// arrival of [arbitrary self types], this can introduce ambiguity. To
1567     /// resolve this, use an explicit type instead of relying on type
1568     /// inference.
1569     ///
1570     /// This is a [future-incompatible] lint to transition this to a hard
1571     /// error in the 2018 edition. See [issue #46906] for more details. This
1572     /// is currently a hard-error on the 2018 edition, and is "warn" by
1573     /// default in the 2015 edition.
1574     ///
1575     /// [arbitrary self types]: https://github.com/rust-lang/rust/issues/44874
1576     /// [issue #46906]: https://github.com/rust-lang/rust/issues/46906
1577     /// [future-incompatible]: ../index.md#future-incompatible-lints
1578     pub TYVAR_BEHIND_RAW_POINTER,
1579     Warn,
1580     "raw pointer to an inference variable",
1581     @future_incompatible = FutureIncompatibleInfo {
1582         reference: "issue #46906 <https://github.com/rust-lang/rust/issues/46906>",
1583         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2018),
1584     };
1585 }
1586
1587 declare_lint! {
1588     /// The `elided_lifetimes_in_paths` lint detects the use of hidden
1589     /// lifetime parameters.
1590     ///
1591     /// ### Example
1592     ///
1593     /// ```rust,compile_fail
1594     /// #![deny(elided_lifetimes_in_paths)]
1595     /// struct Foo<'a> {
1596     ///     x: &'a u32
1597     /// }
1598     ///
1599     /// fn foo(x: &Foo) {
1600     /// }
1601     /// ```
1602     ///
1603     /// {{produces}}
1604     ///
1605     /// ### Explanation
1606     ///
1607     /// Elided lifetime parameters can make it difficult to see at a glance
1608     /// that borrowing is occurring. This lint ensures that lifetime
1609     /// parameters are always explicitly stated, even if it is the `'_`
1610     /// [placeholder lifetime].
1611     ///
1612     /// This lint is "allow" by default because it has some known issues, and
1613     /// may require a significant transition for old code.
1614     ///
1615     /// [placeholder lifetime]: https://doc.rust-lang.org/reference/lifetime-elision.html#lifetime-elision-in-functions
1616     pub ELIDED_LIFETIMES_IN_PATHS,
1617     Allow,
1618     "hidden lifetime parameters in types are deprecated",
1619     crate_level_only
1620 }
1621
1622 declare_lint! {
1623     /// The `bare_trait_objects` lint suggests using `dyn Trait` for trait
1624     /// objects.
1625     ///
1626     /// ### Example
1627     ///
1628     /// ```rust,edition2018
1629     /// trait Trait { }
1630     ///
1631     /// fn takes_trait_object(_: Box<Trait>) {
1632     /// }
1633     /// ```
1634     ///
1635     /// {{produces}}
1636     ///
1637     /// ### Explanation
1638     ///
1639     /// Without the `dyn` indicator, it can be ambiguous or confusing when
1640     /// reading code as to whether or not you are looking at a trait object.
1641     /// The `dyn` keyword makes it explicit, and adds a symmetry to contrast
1642     /// with [`impl Trait`].
1643     ///
1644     /// [`impl Trait`]: https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
1645     pub BARE_TRAIT_OBJECTS,
1646     Warn,
1647     "suggest using `dyn Trait` for trait objects",
1648     @future_incompatible = FutureIncompatibleInfo {
1649         reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>",
1650         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
1651     };
1652 }
1653
1654 declare_lint! {
1655     /// The `absolute_paths_not_starting_with_crate` lint detects fully
1656     /// qualified paths that start with a module name instead of `crate`,
1657     /// `self`, or an extern crate name
1658     ///
1659     /// ### Example
1660     ///
1661     /// ```rust,edition2015,compile_fail
1662     /// #![deny(absolute_paths_not_starting_with_crate)]
1663     ///
1664     /// mod foo {
1665     ///     pub fn bar() {}
1666     /// }
1667     ///
1668     /// fn main() {
1669     ///     ::foo::bar();
1670     /// }
1671     /// ```
1672     ///
1673     /// {{produces}}
1674     ///
1675     /// ### Explanation
1676     ///
1677     /// Rust [editions] allow the language to evolve without breaking
1678     /// backwards compatibility. This lint catches code that uses absolute
1679     /// paths in the style of the 2015 edition. In the 2015 edition, absolute
1680     /// paths (those starting with `::`) refer to either the crate root or an
1681     /// external crate. In the 2018 edition it was changed so that they only
1682     /// refer to external crates. The path prefix `crate::` should be used
1683     /// instead to reference items from the crate root.
1684     ///
1685     /// If you switch the compiler from the 2015 to 2018 edition without
1686     /// updating the code, then it will fail to compile if the old style paths
1687     /// are used. You can manually change the paths to use the `crate::`
1688     /// prefix to transition to the 2018 edition.
1689     ///
1690     /// This lint solves the problem automatically. It is "allow" by default
1691     /// because the code is perfectly valid in the 2015 edition. The [`cargo
1692     /// fix`] tool with the `--edition` flag will switch this lint to "warn"
1693     /// and automatically apply the suggested fix from the compiler. This
1694     /// provides a completely automated way to update old code to the 2018
1695     /// edition.
1696     ///
1697     /// [editions]: https://doc.rust-lang.org/edition-guide/
1698     /// [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html
1699     pub ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
1700     Allow,
1701     "fully qualified paths that start with a module name \
1702      instead of `crate`, `self`, or an extern crate name",
1703      @future_incompatible = FutureIncompatibleInfo {
1704         reference: "issue #53130 <https://github.com/rust-lang/rust/issues/53130>",
1705         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2018),
1706      };
1707 }
1708
1709 declare_lint! {
1710     /// The `illegal_floating_point_literal_pattern` lint detects
1711     /// floating-point literals used in patterns.
1712     ///
1713     /// ### Example
1714     ///
1715     /// ```rust
1716     /// let x = 42.0;
1717     ///
1718     /// match x {
1719     ///     5.0 => {}
1720     ///     _ => {}
1721     /// }
1722     /// ```
1723     ///
1724     /// {{produces}}
1725     ///
1726     /// ### Explanation
1727     ///
1728     /// Previous versions of the compiler accepted floating-point literals in
1729     /// patterns, but it was later determined this was a mistake. The
1730     /// semantics of comparing floating-point values may not be clear in a
1731     /// pattern when contrasted with "structural equality". Typically you can
1732     /// work around this by using a [match guard], such as:
1733     ///
1734     /// ```rust
1735     /// # let x = 42.0;
1736     ///
1737     /// match x {
1738     ///     y if y == 5.0 => {}
1739     ///     _ => {}
1740     /// }
1741     /// ```
1742     ///
1743     /// This is a [future-incompatible] lint to transition this to a hard
1744     /// error in the future. See [issue #41620] for more details.
1745     ///
1746     /// [issue #41620]: https://github.com/rust-lang/rust/issues/41620
1747     /// [match guard]: https://doc.rust-lang.org/reference/expressions/match-expr.html#match-guards
1748     /// [future-incompatible]: ../index.md#future-incompatible-lints
1749     pub ILLEGAL_FLOATING_POINT_LITERAL_PATTERN,
1750     Warn,
1751     "floating-point literals cannot be used in patterns",
1752     @future_incompatible = FutureIncompatibleInfo {
1753         reference: "issue #41620 <https://github.com/rust-lang/rust/issues/41620>",
1754     };
1755 }
1756
1757 declare_lint! {
1758     /// The `unstable_name_collisions` lint detects that you have used a name
1759     /// that the standard library plans to add in the future.
1760     ///
1761     /// ### Example
1762     ///
1763     /// ```rust
1764     /// trait MyIterator : Iterator {
1765     ///     // is_sorted is an unstable method that already exists on the Iterator trait
1766     ///     fn is_sorted(self) -> bool where Self: Sized {true}
1767     /// }
1768     ///
1769     /// impl<T: ?Sized> MyIterator for T where T: Iterator { }
1770     ///
1771     /// let x = vec![1, 2, 3];
1772     /// let _ = x.iter().is_sorted();
1773     /// ```
1774     ///
1775     /// {{produces}}
1776     ///
1777     /// ### Explanation
1778     ///
1779     /// When new methods are added to traits in the standard library, they are
1780     /// usually added in an "unstable" form which is only available on the
1781     /// [nightly channel] with a [`feature` attribute]. If there is any
1782     /// pre-existing code which extends a trait to have a method with the same
1783     /// name, then the names will collide. In the future, when the method is
1784     /// stabilized, this will cause an error due to the ambiguity. This lint
1785     /// is an early-warning to let you know that there may be a collision in
1786     /// the future. This can be avoided by adding type annotations to
1787     /// disambiguate which trait method you intend to call, such as
1788     /// `MyIterator::is_sorted(my_iter)` or renaming or removing the method.
1789     ///
1790     /// [nightly channel]: https://doc.rust-lang.org/book/appendix-07-nightly-rust.html
1791     /// [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/
1792     pub UNSTABLE_NAME_COLLISIONS,
1793     Warn,
1794     "detects name collision with an existing but unstable method",
1795     @future_incompatible = FutureIncompatibleInfo {
1796         reference: "issue #48919 <https://github.com/rust-lang/rust/issues/48919>",
1797         // Note: this item represents future incompatibility of all unstable functions in the
1798         //       standard library, and thus should never be removed or changed to an error.
1799     };
1800 }
1801
1802 declare_lint! {
1803     /// The `irrefutable_let_patterns` lint detects [irrefutable patterns]
1804     /// in [`if let`]s, [`while let`]s, and `if let` guards.
1805     ///
1806     /// ### Example
1807     ///
1808     /// ```rust
1809     /// if let _ = 123 {
1810     ///     println!("always runs!");
1811     /// }
1812     /// ```
1813     ///
1814     /// {{produces}}
1815     ///
1816     /// ### Explanation
1817     ///
1818     /// There usually isn't a reason to have an irrefutable pattern in an
1819     /// `if let` or `while let` statement, because the pattern will always match
1820     /// successfully. A [`let`] or [`loop`] statement will suffice. However,
1821     /// when generating code with a macro, forbidding irrefutable patterns
1822     /// would require awkward workarounds in situations where the macro
1823     /// doesn't know if the pattern is refutable or not. This lint allows
1824     /// macros to accept this form, while alerting for a possibly incorrect
1825     /// use in normal code.
1826     ///
1827     /// See [RFC 2086] for more details.
1828     ///
1829     /// [irrefutable patterns]: https://doc.rust-lang.org/reference/patterns.html#refutability
1830     /// [`if let`]: https://doc.rust-lang.org/reference/expressions/if-expr.html#if-let-expressions
1831     /// [`while let`]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#predicate-pattern-loops
1832     /// [`let`]: https://doc.rust-lang.org/reference/statements.html#let-statements
1833     /// [`loop`]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#infinite-loops
1834     /// [RFC 2086]: https://github.com/rust-lang/rfcs/blob/master/text/2086-allow-if-let-irrefutables.md
1835     pub IRREFUTABLE_LET_PATTERNS,
1836     Warn,
1837     "detects irrefutable patterns in `if let` and `while let` statements"
1838 }
1839
1840 declare_lint! {
1841     /// The `unused_labels` lint detects [labels] that are never used.
1842     ///
1843     /// [labels]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#loop-labels
1844     ///
1845     /// ### Example
1846     ///
1847     /// ```rust,no_run
1848     /// 'unused_label: loop {}
1849     /// ```
1850     ///
1851     /// {{produces}}
1852     ///
1853     /// ### Explanation
1854     ///
1855     /// Unused labels may signal a mistake or unfinished code. To silence the
1856     /// warning for the individual label, prefix it with an underscore such as
1857     /// `'_my_label:`.
1858     pub UNUSED_LABELS,
1859     Warn,
1860     "detects labels that are never used"
1861 }
1862
1863 declare_lint! {
1864     /// The `where_clauses_object_safety` lint detects for [object safety] of
1865     /// [where clauses].
1866     ///
1867     /// [object safety]: https://doc.rust-lang.org/reference/items/traits.html#object-safety
1868     /// [where clauses]: https://doc.rust-lang.org/reference/items/generics.html#where-clauses
1869     ///
1870     /// ### Example
1871     ///
1872     /// ```rust,no_run
1873     /// trait Trait {}
1874     ///
1875     /// trait X { fn foo(&self) where Self: Trait; }
1876     ///
1877     /// impl X for () { fn foo(&self) {} }
1878     ///
1879     /// impl Trait for dyn X {}
1880     ///
1881     /// // Segfault at opt-level 0, SIGILL otherwise.
1882     /// pub fn main() { <dyn X as X>::foo(&()); }
1883     /// ```
1884     ///
1885     /// {{produces}}
1886     ///
1887     /// ### Explanation
1888     ///
1889     /// The compiler previously allowed these object-unsafe bounds, which was
1890     /// incorrect. This is a [future-incompatible] lint to transition this to
1891     /// a hard error in the future. See [issue #51443] for more details.
1892     ///
1893     /// [issue #51443]: https://github.com/rust-lang/rust/issues/51443
1894     /// [future-incompatible]: ../index.md#future-incompatible-lints
1895     pub WHERE_CLAUSES_OBJECT_SAFETY,
1896     Warn,
1897     "checks the object safety of where clauses",
1898     @future_incompatible = FutureIncompatibleInfo {
1899         reference: "issue #51443 <https://github.com/rust-lang/rust/issues/51443>",
1900     };
1901 }
1902
1903 declare_lint! {
1904     /// The `proc_macro_derive_resolution_fallback` lint detects proc macro
1905     /// derives using inaccessible names from parent modules.
1906     ///
1907     /// ### Example
1908     ///
1909     /// ```rust,ignore (proc-macro)
1910     /// // foo.rs
1911     /// #![crate_type = "proc-macro"]
1912     ///
1913     /// extern crate proc_macro;
1914     ///
1915     /// use proc_macro::*;
1916     ///
1917     /// #[proc_macro_derive(Foo)]
1918     /// pub fn foo1(a: TokenStream) -> TokenStream {
1919     ///     drop(a);
1920     ///     "mod __bar { static mut BAR: Option<Something> = None; }".parse().unwrap()
1921     /// }
1922     /// ```
1923     ///
1924     /// ```rust,ignore (needs-dependency)
1925     /// // bar.rs
1926     /// #[macro_use]
1927     /// extern crate foo;
1928     ///
1929     /// struct Something;
1930     ///
1931     /// #[derive(Foo)]
1932     /// struct Another;
1933     ///
1934     /// fn main() {}
1935     /// ```
1936     ///
1937     /// This will produce:
1938     ///
1939     /// ```text
1940     /// warning: cannot find type `Something` in this scope
1941     ///  --> src/main.rs:8:10
1942     ///   |
1943     /// 8 | #[derive(Foo)]
1944     ///   |          ^^^ names from parent modules are not accessible without an explicit import
1945     ///   |
1946     ///   = note: `#[warn(proc_macro_derive_resolution_fallback)]` on by default
1947     ///   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1948     ///   = note: for more information, see issue #50504 <https://github.com/rust-lang/rust/issues/50504>
1949     /// ```
1950     ///
1951     /// ### Explanation
1952     ///
1953     /// If a proc-macro generates a module, the compiler unintentionally
1954     /// allowed items in that module to refer to items in the crate root
1955     /// without importing them. This is a [future-incompatible] lint to
1956     /// transition this to a hard error in the future. See [issue #50504] for
1957     /// more details.
1958     ///
1959     /// [issue #50504]: https://github.com/rust-lang/rust/issues/50504
1960     /// [future-incompatible]: ../index.md#future-incompatible-lints
1961     pub PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
1962     Deny,
1963     "detects proc macro derives using inaccessible names from parent modules",
1964     @future_incompatible = FutureIncompatibleInfo {
1965         reference: "issue #83583 <https://github.com/rust-lang/rust/issues/83583>",
1966         reason: FutureIncompatibilityReason::FutureReleaseErrorReportNow,
1967     };
1968 }
1969
1970 declare_lint! {
1971     /// The `macro_use_extern_crate` lint detects the use of the
1972     /// [`macro_use` attribute].
1973     ///
1974     /// ### Example
1975     ///
1976     /// ```rust,ignore (needs extern crate)
1977     /// #![deny(macro_use_extern_crate)]
1978     ///
1979     /// #[macro_use]
1980     /// extern crate serde_json;
1981     ///
1982     /// fn main() {
1983     ///     let _ = json!{{}};
1984     /// }
1985     /// ```
1986     ///
1987     /// This will produce:
1988     ///
1989     /// ```text
1990     /// error: deprecated `#[macro_use]` attribute used to import macros should be replaced at use sites with a `use` item to import the macro instead
1991     ///  --> src/main.rs:3:1
1992     ///   |
1993     /// 3 | #[macro_use]
1994     ///   | ^^^^^^^^^^^^
1995     ///   |
1996     /// note: the lint level is defined here
1997     ///  --> src/main.rs:1:9
1998     ///   |
1999     /// 1 | #![deny(macro_use_extern_crate)]
2000     ///   |         ^^^^^^^^^^^^^^^^^^^^^^
2001     /// ```
2002     ///
2003     /// ### Explanation
2004     ///
2005     /// The [`macro_use` attribute] on an [`extern crate`] item causes
2006     /// macros in that external crate to be brought into the prelude of the
2007     /// crate, making the macros in scope everywhere. As part of the efforts
2008     /// to simplify handling of dependencies in the [2018 edition], the use of
2009     /// `extern crate` is being phased out. To bring macros from extern crates
2010     /// into scope, it is recommended to use a [`use` import].
2011     ///
2012     /// This lint is "allow" by default because this is a stylistic choice
2013     /// that has not been settled, see [issue #52043] for more information.
2014     ///
2015     /// [`macro_use` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#the-macro_use-attribute
2016     /// [`use` import]: https://doc.rust-lang.org/reference/items/use-declarations.html
2017     /// [issue #52043]: https://github.com/rust-lang/rust/issues/52043
2018     pub MACRO_USE_EXTERN_CRATE,
2019     Allow,
2020     "the `#[macro_use]` attribute is now deprecated in favor of using macros \
2021      via the module system"
2022 }
2023
2024 declare_lint! {
2025     /// The `macro_expanded_macro_exports_accessed_by_absolute_paths` lint
2026     /// detects macro-expanded [`macro_export`] macros from the current crate
2027     /// that cannot be referred to by absolute paths.
2028     ///
2029     /// [`macro_export`]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope
2030     ///
2031     /// ### Example
2032     ///
2033     /// ```rust,compile_fail
2034     /// macro_rules! define_exported {
2035     ///     () => {
2036     ///         #[macro_export]
2037     ///         macro_rules! exported {
2038     ///             () => {};
2039     ///         }
2040     ///     };
2041     /// }
2042     ///
2043     /// define_exported!();
2044     ///
2045     /// fn main() {
2046     ///     crate::exported!();
2047     /// }
2048     /// ```
2049     ///
2050     /// {{produces}}
2051     ///
2052     /// ### Explanation
2053     ///
2054     /// The intent is that all macros marked with the `#[macro_export]`
2055     /// attribute are made available in the root of the crate. However, when a
2056     /// `macro_rules!` definition is generated by another macro, the macro
2057     /// expansion is unable to uphold this rule. This is a
2058     /// [future-incompatible] lint to transition this to a hard error in the
2059     /// future. See [issue #53495] for more details.
2060     ///
2061     /// [issue #53495]: https://github.com/rust-lang/rust/issues/53495
2062     /// [future-incompatible]: ../index.md#future-incompatible-lints
2063     pub MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
2064     Deny,
2065     "macro-expanded `macro_export` macros from the current crate \
2066      cannot be referred to by absolute paths",
2067     @future_incompatible = FutureIncompatibleInfo {
2068         reference: "issue #52234 <https://github.com/rust-lang/rust/issues/52234>",
2069     };
2070     crate_level_only
2071 }
2072
2073 declare_lint! {
2074     /// The `explicit_outlives_requirements` lint detects unnecessary
2075     /// lifetime bounds that can be inferred.
2076     ///
2077     /// ### Example
2078     ///
2079     /// ```rust,compile_fail
2080     /// # #![allow(unused)]
2081     /// #![deny(explicit_outlives_requirements)]
2082     ///
2083     /// struct SharedRef<'a, T>
2084     /// where
2085     ///     T: 'a,
2086     /// {
2087     ///     data: &'a T,
2088     /// }
2089     /// ```
2090     ///
2091     /// {{produces}}
2092     ///
2093     /// ### Explanation
2094     ///
2095     /// If a `struct` contains a reference, such as `&'a T`, the compiler
2096     /// requires that `T` outlives the lifetime `'a`. This historically
2097     /// required writing an explicit lifetime bound to indicate this
2098     /// requirement. However, this can be overly explicit, causing clutter and
2099     /// unnecessary complexity. The language was changed to automatically
2100     /// infer the bound if it is not specified. Specifically, if the struct
2101     /// contains a reference, directly or indirectly, to `T` with lifetime
2102     /// `'x`, then it will infer that `T: 'x` is a requirement.
2103     ///
2104     /// This lint is "allow" by default because it can be noisy for existing
2105     /// code that already had these requirements. This is a stylistic choice,
2106     /// as it is still valid to explicitly state the bound. It also has some
2107     /// false positives that can cause confusion.
2108     ///
2109     /// See [RFC 2093] for more details.
2110     ///
2111     /// [RFC 2093]: https://github.com/rust-lang/rfcs/blob/master/text/2093-infer-outlives.md
2112     pub EXPLICIT_OUTLIVES_REQUIREMENTS,
2113     Allow,
2114     "outlives requirements can be inferred"
2115 }
2116
2117 declare_lint! {
2118     /// The `indirect_structural_match` lint detects a `const` in a pattern
2119     /// that manually implements [`PartialEq`] and [`Eq`].
2120     ///
2121     /// [`PartialEq`]: https://doc.rust-lang.org/std/cmp/trait.PartialEq.html
2122     /// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
2123     ///
2124     /// ### Example
2125     ///
2126     /// ```rust,compile_fail
2127     /// #![deny(indirect_structural_match)]
2128     ///
2129     /// struct NoDerive(i32);
2130     /// impl PartialEq for NoDerive { fn eq(&self, _: &Self) -> bool { false } }
2131     /// impl Eq for NoDerive { }
2132     /// #[derive(PartialEq, Eq)]
2133     /// struct WrapParam<T>(T);
2134     /// const WRAP_INDIRECT_PARAM: & &WrapParam<NoDerive> = & &WrapParam(NoDerive(0));
2135     /// fn main() {
2136     ///     match WRAP_INDIRECT_PARAM {
2137     ///         WRAP_INDIRECT_PARAM => { }
2138     ///         _ => { }
2139     ///     }
2140     /// }
2141     /// ```
2142     ///
2143     /// {{produces}}
2144     ///
2145     /// ### Explanation
2146     ///
2147     /// The compiler unintentionally accepted this form in the past. This is a
2148     /// [future-incompatible] lint to transition this to a hard error in the
2149     /// future. See [issue #62411] for a complete description of the problem,
2150     /// and some possible solutions.
2151     ///
2152     /// [issue #62411]: https://github.com/rust-lang/rust/issues/62411
2153     /// [future-incompatible]: ../index.md#future-incompatible-lints
2154     pub INDIRECT_STRUCTURAL_MATCH,
2155     Warn,
2156     "constant used in pattern contains value of non-structural-match type in a field or a variant",
2157     @future_incompatible = FutureIncompatibleInfo {
2158         reference: "issue #62411 <https://github.com/rust-lang/rust/issues/62411>",
2159     };
2160 }
2161
2162 declare_lint! {
2163     /// The `deprecated_in_future` lint is internal to rustc and should not be
2164     /// used by user code.
2165     ///
2166     /// This lint is only enabled in the standard library. It works with the
2167     /// use of `#[rustc_deprecated]` with a `since` field of a version in the
2168     /// future. This allows something to be marked as deprecated in a future
2169     /// version, and then this lint will ensure that the item is no longer
2170     /// used in the standard library. See the [stability documentation] for
2171     /// more details.
2172     ///
2173     /// [stability documentation]: https://rustc-dev-guide.rust-lang.org/stability.html#rustc_deprecated
2174     pub DEPRECATED_IN_FUTURE,
2175     Allow,
2176     "detects use of items that will be deprecated in a future version",
2177     report_in_external_macro
2178 }
2179
2180 declare_lint! {
2181     /// The `pointer_structural_match` lint detects pointers used in patterns whose behaviour
2182     /// cannot be relied upon across compiler versions and optimization levels.
2183     ///
2184     /// ### Example
2185     ///
2186     /// ```rust,compile_fail
2187     /// #![deny(pointer_structural_match)]
2188     /// fn foo(a: usize, b: usize) -> usize { a + b }
2189     /// const FOO: fn(usize, usize) -> usize = foo;
2190     /// fn main() {
2191     ///     match FOO {
2192     ///         FOO => {},
2193     ///         _ => {},
2194     ///     }
2195     /// }
2196     /// ```
2197     ///
2198     /// {{produces}}
2199     ///
2200     /// ### Explanation
2201     ///
2202     /// Previous versions of Rust allowed function pointers and wide raw pointers in patterns.
2203     /// While these work in many cases as expected by users, it is possible that due to
2204     /// optimizations pointers are "not equal to themselves" or pointers to different functions
2205     /// compare as equal during runtime. This is because LLVM optimizations can deduplicate
2206     /// functions if their bodies are the same, thus also making pointers to these functions point
2207     /// to the same location. Additionally functions may get duplicated if they are instantiated
2208     /// in different crates and not deduplicated again via LTO.
2209     pub POINTER_STRUCTURAL_MATCH,
2210     Allow,
2211     "pointers are not structural-match",
2212     @future_incompatible = FutureIncompatibleInfo {
2213         reference: "issue #62411 <https://github.com/rust-lang/rust/issues/70861>",
2214     };
2215 }
2216
2217 declare_lint! {
2218     /// The `nontrivial_structural_match` lint detects constants that are used in patterns,
2219     /// whose type is not structural-match and whose initializer body actually uses values
2220     /// that are not structural-match. So `Option<NotStruturalMatch>` is ok if the constant
2221     /// is just `None`.
2222     ///
2223     /// ### Example
2224     ///
2225     /// ```rust,compile_fail
2226     /// #![deny(nontrivial_structural_match)]
2227     ///
2228     /// #[derive(Copy, Clone, Debug)]
2229     /// struct NoDerive(u32);
2230     /// impl PartialEq for NoDerive { fn eq(&self, _: &Self) -> bool { false } }
2231     /// impl Eq for NoDerive { }
2232     /// fn main() {
2233     ///     const INDEX: Option<NoDerive> = [None, Some(NoDerive(10))][0];
2234     ///     match None { Some(_) => panic!("whoops"), INDEX => dbg!(INDEX), };
2235     /// }
2236     /// ```
2237     ///
2238     /// {{produces}}
2239     ///
2240     /// ### Explanation
2241     ///
2242     /// Previous versions of Rust accepted constants in patterns, even if those constants's types
2243     /// did not have `PartialEq` derived. Thus the compiler falls back to runtime execution of
2244     /// `PartialEq`, which can report that two constants are not equal even if they are
2245     /// bit-equivalent.
2246     pub NONTRIVIAL_STRUCTURAL_MATCH,
2247     Warn,
2248     "constant used in pattern of non-structural-match type and the constant's initializer \
2249     expression contains values of non-structural-match types",
2250     @future_incompatible = FutureIncompatibleInfo {
2251         reference: "issue #73448 <https://github.com/rust-lang/rust/issues/73448>",
2252     };
2253 }
2254
2255 declare_lint! {
2256     /// The `ambiguous_associated_items` lint detects ambiguity between
2257     /// [associated items] and [enum variants].
2258     ///
2259     /// [associated items]: https://doc.rust-lang.org/reference/items/associated-items.html
2260     /// [enum variants]: https://doc.rust-lang.org/reference/items/enumerations.html
2261     ///
2262     /// ### Example
2263     ///
2264     /// ```rust,compile_fail
2265     /// enum E {
2266     ///     V
2267     /// }
2268     ///
2269     /// trait Tr {
2270     ///     type V;
2271     ///     fn foo() -> Self::V;
2272     /// }
2273     ///
2274     /// impl Tr for E {
2275     ///     type V = u8;
2276     ///     // `Self::V` is ambiguous because it may refer to the associated type or
2277     ///     // the enum variant.
2278     ///     fn foo() -> Self::V { 0 }
2279     /// }
2280     /// ```
2281     ///
2282     /// {{produces}}
2283     ///
2284     /// ### Explanation
2285     ///
2286     /// Previous versions of Rust did not allow accessing enum variants
2287     /// through [type aliases]. When this ability was added (see [RFC 2338]), this
2288     /// introduced some situations where it can be ambiguous what a type
2289     /// was referring to.
2290     ///
2291     /// To fix this ambiguity, you should use a [qualified path] to explicitly
2292     /// state which type to use. For example, in the above example the
2293     /// function can be written as `fn f() -> <Self as Tr>::V { 0 }` to
2294     /// specifically refer to the associated type.
2295     ///
2296     /// This is a [future-incompatible] lint to transition this to a hard
2297     /// error in the future. See [issue #57644] for more details.
2298     ///
2299     /// [issue #57644]: https://github.com/rust-lang/rust/issues/57644
2300     /// [type aliases]: https://doc.rust-lang.org/reference/items/type-aliases.html#type-aliases
2301     /// [RFC 2338]: https://github.com/rust-lang/rfcs/blob/master/text/2338-type-alias-enum-variants.md
2302     /// [qualified path]: https://doc.rust-lang.org/reference/paths.html#qualified-paths
2303     /// [future-incompatible]: ../index.md#future-incompatible-lints
2304     pub AMBIGUOUS_ASSOCIATED_ITEMS,
2305     Deny,
2306     "ambiguous associated items",
2307     @future_incompatible = FutureIncompatibleInfo {
2308         reference: "issue #57644 <https://github.com/rust-lang/rust/issues/57644>",
2309     };
2310 }
2311
2312 declare_lint! {
2313     /// The `mutable_borrow_reservation_conflict` lint detects the reservation
2314     /// of a two-phased borrow that conflicts with other shared borrows.
2315     ///
2316     /// ### Example
2317     ///
2318     /// ```rust
2319     /// let mut v = vec![0, 1, 2];
2320     /// let shared = &v;
2321     /// v.push(shared.len());
2322     /// ```
2323     ///
2324     /// {{produces}}
2325     ///
2326     /// ### Explanation
2327     ///
2328     /// This is a [future-incompatible] lint to transition this to a hard error
2329     /// in the future. See [issue #59159] for a complete description of the
2330     /// problem, and some possible solutions.
2331     ///
2332     /// [issue #59159]: https://github.com/rust-lang/rust/issues/59159
2333     /// [future-incompatible]: ../index.md#future-incompatible-lints
2334     pub MUTABLE_BORROW_RESERVATION_CONFLICT,
2335     Warn,
2336     "reservation of a two-phased borrow conflicts with other shared borrows",
2337     @future_incompatible = FutureIncompatibleInfo {
2338         reference: "issue #59159 <https://github.com/rust-lang/rust/issues/59159>",
2339     };
2340 }
2341
2342 declare_lint! {
2343     /// The `soft_unstable` lint detects unstable features that were
2344     /// unintentionally allowed on stable.
2345     ///
2346     /// ### Example
2347     ///
2348     /// ```rust,compile_fail
2349     /// #[cfg(test)]
2350     /// extern crate test;
2351     ///
2352     /// #[bench]
2353     /// fn name(b: &mut test::Bencher) {
2354     ///     b.iter(|| 123)
2355     /// }
2356     /// ```
2357     ///
2358     /// {{produces}}
2359     ///
2360     /// ### Explanation
2361     ///
2362     /// The [`bench` attribute] was accidentally allowed to be specified on
2363     /// the [stable release channel]. Turning this to a hard error would have
2364     /// broken some projects. This lint allows those projects to continue to
2365     /// build correctly when [`--cap-lints`] is used, but otherwise signal an
2366     /// error that `#[bench]` should not be used on the stable channel. This
2367     /// is a [future-incompatible] lint to transition this to a hard error in
2368     /// the future. See [issue #64266] for more details.
2369     ///
2370     /// [issue #64266]: https://github.com/rust-lang/rust/issues/64266
2371     /// [`bench` attribute]: https://doc.rust-lang.org/nightly/unstable-book/library-features/test.html
2372     /// [stable release channel]: https://doc.rust-lang.org/book/appendix-07-nightly-rust.html
2373     /// [`--cap-lints`]: https://doc.rust-lang.org/rustc/lints/levels.html#capping-lints
2374     /// [future-incompatible]: ../index.md#future-incompatible-lints
2375     pub SOFT_UNSTABLE,
2376     Deny,
2377     "a feature gate that doesn't break dependent crates",
2378     @future_incompatible = FutureIncompatibleInfo {
2379         reference: "issue #64266 <https://github.com/rust-lang/rust/issues/64266>",
2380     };
2381 }
2382
2383 declare_lint! {
2384     /// The `inline_no_sanitize` lint detects incompatible use of
2385     /// [`#[inline(always)]`][inline] and [`#[no_sanitize(...)]`][no_sanitize].
2386     ///
2387     /// [inline]: https://doc.rust-lang.org/reference/attributes/codegen.html#the-inline-attribute
2388     /// [no_sanitize]: https://doc.rust-lang.org/nightly/unstable-book/language-features/no-sanitize.html
2389     ///
2390     /// ### Example
2391     ///
2392     /// ```rust
2393     /// #![feature(no_sanitize)]
2394     ///
2395     /// #[inline(always)]
2396     /// #[no_sanitize(address)]
2397     /// fn x() {}
2398     ///
2399     /// fn main() {
2400     ///     x()
2401     /// }
2402     /// ```
2403     ///
2404     /// {{produces}}
2405     ///
2406     /// ### Explanation
2407     ///
2408     /// The use of the [`#[inline(always)]`][inline] attribute prevents the
2409     /// the [`#[no_sanitize(...)]`][no_sanitize] attribute from working.
2410     /// Consider temporarily removing `inline` attribute.
2411     pub INLINE_NO_SANITIZE,
2412     Warn,
2413     "detects incompatible use of `#[inline(always)]` and `#[no_sanitize(...)]`",
2414 }
2415
2416 declare_lint! {
2417     /// The `asm_sub_register` lint detects using only a subset of a register
2418     /// for inline asm inputs.
2419     ///
2420     /// ### Example
2421     ///
2422     /// ```rust,ignore (fails on non-x86_64)
2423     /// #[cfg(target_arch="x86_64")]
2424     /// use std::arch::asm;
2425     ///
2426     /// fn main() {
2427     ///     #[cfg(target_arch="x86_64")]
2428     ///     unsafe {
2429     ///         asm!("mov {0}, {0}", in(reg) 0i16);
2430     ///     }
2431     /// }
2432     /// ```
2433     ///
2434     /// This will produce:
2435     ///
2436     /// ```text
2437     /// warning: formatting may not be suitable for sub-register argument
2438     ///  --> src/main.rs:7:19
2439     ///   |
2440     /// 7 |         asm!("mov {0}, {0}", in(reg) 0i16);
2441     ///   |                   ^^^  ^^^           ---- for this argument
2442     ///   |
2443     ///   = note: `#[warn(asm_sub_register)]` on by default
2444     ///   = help: use the `x` modifier to have the register formatted as `ax`
2445     ///   = help: or use the `r` modifier to keep the default formatting of `rax`
2446     /// ```
2447     ///
2448     /// ### Explanation
2449     ///
2450     /// Registers on some architectures can use different names to refer to a
2451     /// subset of the register. By default, the compiler will use the name for
2452     /// the full register size. To explicitly use a subset of the register,
2453     /// you can override the default by using a modifier on the template
2454     /// string operand to specify when subregister to use. This lint is issued
2455     /// if you pass in a value with a smaller data type than the default
2456     /// register size, to alert you of possibly using the incorrect width. To
2457     /// fix this, add the suggested modifier to the template, or cast the
2458     /// value to the correct size.
2459     pub ASM_SUB_REGISTER,
2460     Warn,
2461     "using only a subset of a register for inline asm inputs",
2462 }
2463
2464 declare_lint! {
2465     /// The `bad_asm_style` lint detects the use of the `.intel_syntax` and
2466     /// `.att_syntax` directives.
2467     ///
2468     /// ### Example
2469     ///
2470     /// ```rust,ignore (fails on non-x86_64)
2471     /// #[cfg(target_arch="x86_64")]
2472     /// use std::arch::asm;
2473     ///
2474     /// fn main() {
2475     ///     #[cfg(target_arch="x86_64")]
2476     ///     unsafe {
2477     ///         asm!(
2478     ///             ".att_syntax",
2479     ///             "movq %{0}, %{0}", in(reg) 0usize
2480     ///         );
2481     ///     }
2482     /// }
2483     /// ```
2484     ///
2485     /// This will produce:
2486     ///
2487     /// ```text
2488     /// warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
2489     ///  --> src/main.rs:8:14
2490     ///   |
2491     /// 8 |             ".att_syntax",
2492     ///   |              ^^^^^^^^^^^
2493     ///   |
2494     ///   = note: `#[warn(bad_asm_style)]` on by default
2495     /// ```
2496     ///
2497     /// ### Explanation
2498     ///
2499     /// On x86, `asm!` uses the intel assembly syntax by default. While this
2500     /// can be switched using assembler directives like `.att_syntax`, using the
2501     /// `att_syntax` option is recommended instead because it will also properly
2502     /// prefix register placeholders with `%` as required by AT&T syntax.
2503     pub BAD_ASM_STYLE,
2504     Warn,
2505     "incorrect use of inline assembly",
2506 }
2507
2508 declare_lint! {
2509     /// The `unsafe_op_in_unsafe_fn` lint detects unsafe operations in unsafe
2510     /// functions without an explicit unsafe block.
2511     ///
2512     /// ### Example
2513     ///
2514     /// ```rust,compile_fail
2515     /// #![deny(unsafe_op_in_unsafe_fn)]
2516     ///
2517     /// unsafe fn foo() {}
2518     ///
2519     /// unsafe fn bar() {
2520     ///     foo();
2521     /// }
2522     ///
2523     /// fn main() {}
2524     /// ```
2525     ///
2526     /// {{produces}}
2527     ///
2528     /// ### Explanation
2529     ///
2530     /// Currently, an [`unsafe fn`] allows any [unsafe] operation within its
2531     /// body. However, this can increase the surface area of code that needs
2532     /// to be scrutinized for proper behavior. The [`unsafe` block] provides a
2533     /// convenient way to make it clear exactly which parts of the code are
2534     /// performing unsafe operations. In the future, it is desired to change
2535     /// it so that unsafe operations cannot be performed in an `unsafe fn`
2536     /// without an `unsafe` block.
2537     ///
2538     /// The fix to this is to wrap the unsafe code in an `unsafe` block.
2539     ///
2540     /// This lint is "allow" by default since this will affect a large amount
2541     /// of existing code, and the exact plan for increasing the severity is
2542     /// still being considered. See [RFC #2585] and [issue #71668] for more
2543     /// details.
2544     ///
2545     /// [`unsafe fn`]: https://doc.rust-lang.org/reference/unsafe-functions.html
2546     /// [`unsafe` block]: https://doc.rust-lang.org/reference/expressions/block-expr.html#unsafe-blocks
2547     /// [unsafe]: https://doc.rust-lang.org/reference/unsafety.html
2548     /// [RFC #2585]: https://github.com/rust-lang/rfcs/blob/master/text/2585-unsafe-block-in-unsafe-fn.md
2549     /// [issue #71668]: https://github.com/rust-lang/rust/issues/71668
2550     pub UNSAFE_OP_IN_UNSAFE_FN,
2551     Allow,
2552     "unsafe operations in unsafe functions without an explicit unsafe block are deprecated",
2553 }
2554
2555 declare_lint! {
2556     /// The `cenum_impl_drop_cast` lint detects an `as` cast of a field-less
2557     /// `enum` that implements [`Drop`].
2558     ///
2559     /// [`Drop`]: https://doc.rust-lang.org/std/ops/trait.Drop.html
2560     ///
2561     /// ### Example
2562     ///
2563     /// ```rust
2564     /// # #![allow(unused)]
2565     /// enum E {
2566     ///     A,
2567     /// }
2568     ///
2569     /// impl Drop for E {
2570     ///     fn drop(&mut self) {
2571     ///         println!("Drop");
2572     ///     }
2573     /// }
2574     ///
2575     /// fn main() {
2576     ///     let e = E::A;
2577     ///     let i = e as u32;
2578     /// }
2579     /// ```
2580     ///
2581     /// {{produces}}
2582     ///
2583     /// ### Explanation
2584     ///
2585     /// Casting a field-less `enum` that does not implement [`Copy`] to an
2586     /// integer moves the value without calling `drop`. This can result in
2587     /// surprising behavior if it was expected that `drop` should be called.
2588     /// Calling `drop` automatically would be inconsistent with other move
2589     /// operations. Since neither behavior is clear or consistent, it was
2590     /// decided that a cast of this nature will no longer be allowed.
2591     ///
2592     /// This is a [future-incompatible] lint to transition this to a hard error
2593     /// in the future. See [issue #73333] for more details.
2594     ///
2595     /// [future-incompatible]: ../index.md#future-incompatible-lints
2596     /// [issue #73333]: https://github.com/rust-lang/rust/issues/73333
2597     /// [`Copy`]: https://doc.rust-lang.org/std/marker/trait.Copy.html
2598     pub CENUM_IMPL_DROP_CAST,
2599     Warn,
2600     "a C-like enum implementing Drop is cast",
2601     @future_incompatible = FutureIncompatibleInfo {
2602         reference: "issue #73333 <https://github.com/rust-lang/rust/issues/73333>",
2603     };
2604 }
2605
2606 declare_lint! {
2607     /// The `const_evaluatable_unchecked` lint detects a generic constant used
2608     /// in a type.
2609     ///
2610     /// ### Example
2611     ///
2612     /// ```rust
2613     /// const fn foo<T>() -> usize {
2614     ///     if std::mem::size_of::<*mut T>() < 8 { // size of *mut T does not depend on T
2615     ///         4
2616     ///     } else {
2617     ///         8
2618     ///     }
2619     /// }
2620     ///
2621     /// fn test<T>() {
2622     ///     let _ = [0; foo::<T>()];
2623     /// }
2624     /// ```
2625     ///
2626     /// {{produces}}
2627     ///
2628     /// ### Explanation
2629     ///
2630     /// In the 1.43 release, some uses of generic parameters in array repeat
2631     /// expressions were accidentally allowed. This is a [future-incompatible]
2632     /// lint to transition this to a hard error in the future. See [issue
2633     /// #76200] for a more detailed description and possible fixes.
2634     ///
2635     /// [future-incompatible]: ../index.md#future-incompatible-lints
2636     /// [issue #76200]: https://github.com/rust-lang/rust/issues/76200
2637     pub CONST_EVALUATABLE_UNCHECKED,
2638     Warn,
2639     "detects a generic constant is used in a type without a emitting a warning",
2640     @future_incompatible = FutureIncompatibleInfo {
2641         reference: "issue #76200 <https://github.com/rust-lang/rust/issues/76200>",
2642     };
2643 }
2644
2645 declare_lint! {
2646     /// The `function_item_references` lint detects function references that are
2647     /// formatted with [`fmt::Pointer`] or transmuted.
2648     ///
2649     /// [`fmt::Pointer`]: https://doc.rust-lang.org/std/fmt/trait.Pointer.html
2650     ///
2651     /// ### Example
2652     ///
2653     /// ```rust
2654     /// fn foo() { }
2655     ///
2656     /// fn main() {
2657     ///     println!("{:p}", &foo);
2658     /// }
2659     /// ```
2660     ///
2661     /// {{produces}}
2662     ///
2663     /// ### Explanation
2664     ///
2665     /// Taking a reference to a function may be mistaken as a way to obtain a
2666     /// pointer to that function. This can give unexpected results when
2667     /// formatting the reference as a pointer or transmuting it. This lint is
2668     /// issued when function references are formatted as pointers, passed as
2669     /// arguments bound by [`fmt::Pointer`] or transmuted.
2670     pub FUNCTION_ITEM_REFERENCES,
2671     Warn,
2672     "suggest casting to a function pointer when attempting to take references to function items",
2673 }
2674
2675 declare_lint! {
2676     /// The `uninhabited_static` lint detects uninhabited statics.
2677     ///
2678     /// ### Example
2679     ///
2680     /// ```rust
2681     /// enum Void {}
2682     /// extern {
2683     ///     static EXTERN: Void;
2684     /// }
2685     /// ```
2686     ///
2687     /// {{produces}}
2688     ///
2689     /// ### Explanation
2690     ///
2691     /// Statics with an uninhabited type can never be initialized, so they are impossible to define.
2692     /// However, this can be side-stepped with an `extern static`, leading to problems later in the
2693     /// compiler which assumes that there are no initialized uninhabited places (such as locals or
2694     /// statics). This was accidentally allowed, but is being phased out.
2695     pub UNINHABITED_STATIC,
2696     Warn,
2697     "uninhabited static",
2698     @future_incompatible = FutureIncompatibleInfo {
2699         reference: "issue #74840 <https://github.com/rust-lang/rust/issues/74840>",
2700     };
2701 }
2702
2703 declare_lint! {
2704     /// The `useless_deprecated` lint detects deprecation attributes with no effect.
2705     ///
2706     /// ### Example
2707     ///
2708     /// ```rust,compile_fail
2709     /// struct X;
2710     ///
2711     /// #[deprecated = "message"]
2712     /// impl Default for X {
2713     ///     fn default() -> Self {
2714     ///         X
2715     ///     }
2716     /// }
2717     /// ```
2718     ///
2719     /// {{produces}}
2720     ///
2721     /// ### Explanation
2722     ///
2723     /// Deprecation attributes have no effect on trait implementations.
2724     pub USELESS_DEPRECATED,
2725     Deny,
2726     "detects deprecation attributes with no effect",
2727 }
2728
2729 declare_lint! {
2730     /// The `undefined_naked_function_abi` lint detects naked function definitions that
2731     /// either do not specify an ABI or specify the Rust ABI.
2732     ///
2733     /// ### Example
2734     ///
2735     /// ```rust
2736     /// #![feature(naked_functions)]
2737     ///
2738     /// use std::arch::asm;
2739     ///
2740     /// #[naked]
2741     /// pub fn default_abi() -> u32 {
2742     ///     unsafe { asm!("", options(noreturn)); }
2743     /// }
2744     ///
2745     /// #[naked]
2746     /// pub extern "Rust" fn rust_abi() -> u32 {
2747     ///     unsafe { asm!("", options(noreturn)); }
2748     /// }
2749     /// ```
2750     ///
2751     /// {{produces}}
2752     ///
2753     /// ### Explanation
2754     ///
2755     /// The Rust ABI is currently undefined. Therefore, naked functions should
2756     /// specify a non-Rust ABI.
2757     pub UNDEFINED_NAKED_FUNCTION_ABI,
2758     Warn,
2759     "undefined naked function ABI"
2760 }
2761
2762 declare_lint! {
2763     /// The `unsupported_naked_functions` lint detects naked function
2764     /// definitions that are unsupported but were previously accepted.
2765     ///
2766     /// ### Example
2767     ///
2768     /// ```rust
2769     /// #![feature(naked_functions)]
2770     ///
2771     /// #[naked]
2772     /// pub extern "C" fn f() -> u32 {
2773     ///     42
2774     /// }
2775     /// ```
2776     ///
2777     /// {{produces}}
2778     ///
2779     /// ### Explanation
2780     ///
2781     /// The naked functions must be defined using a single inline assembly
2782     /// block.
2783     ///
2784     /// The execution must never fall through past the end of the assembly
2785     /// code so the block must use `noreturn` option. The asm block can also
2786     /// use `att_syntax` option, but other options are not allowed.
2787     ///
2788     /// The asm block must not contain any operands other than `const` and
2789     /// `sym`. Additionally, naked function should specify a non-Rust ABI.
2790     ///
2791     /// Naked functions cannot be inlined. All forms of the `inline` attribute
2792     /// are prohibited.
2793     ///
2794     /// While other definitions of naked functions were previously accepted,
2795     /// they are unsupported and might not work reliably. This is a
2796     /// [future-incompatible] lint that will transition into hard error in
2797     /// the future.
2798     ///
2799     /// [future-incompatible]: ../index.md#future-incompatible-lints
2800     pub UNSUPPORTED_NAKED_FUNCTIONS,
2801     Warn,
2802     "unsupported naked function definitions",
2803     @future_incompatible = FutureIncompatibleInfo {
2804         reference: "issue #32408 <https://github.com/rust-lang/rust/issues/32408>",
2805     };
2806 }
2807
2808 declare_lint! {
2809     /// The `ineffective_unstable_trait_impl` lint detects `#[unstable]` attributes which are not used.
2810     ///
2811     /// ### Example
2812     ///
2813     /// ```rust,compile_fail
2814     /// #![feature(staged_api)]
2815     ///
2816     /// #[derive(Clone)]
2817     /// #[stable(feature = "x", since = "1")]
2818     /// struct S {}
2819     ///
2820     /// #[unstable(feature = "y", issue = "none")]
2821     /// impl Copy for S {}
2822     /// ```
2823     ///
2824     /// {{produces}}
2825     ///
2826     /// ### Explanation
2827     ///
2828     /// `staged_api` does not currently support using a stability attribute on `impl` blocks.
2829     /// `impl`s are always stable if both the type and trait are stable, and always unstable otherwise.
2830     pub INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
2831     Deny,
2832     "detects `#[unstable]` on stable trait implementations for stable types"
2833 }
2834
2835 declare_lint! {
2836     /// The `semicolon_in_expressions_from_macros` lint detects trailing semicolons
2837     /// in macro bodies when the macro is invoked in expression position.
2838     /// This was previous accepted, but is being phased out.
2839     ///
2840     /// ### Example
2841     ///
2842     /// ```rust,compile_fail
2843     /// #![deny(semicolon_in_expressions_from_macros)]
2844     /// macro_rules! foo {
2845     ///     () => { true; }
2846     /// }
2847     ///
2848     /// fn main() {
2849     ///     let val = match true {
2850     ///         true => false,
2851     ///         _ => foo!()
2852     ///     };
2853     /// }
2854     /// ```
2855     ///
2856     /// {{produces}}
2857     ///
2858     /// ### Explanation
2859     ///
2860     /// Previous, Rust ignored trailing semicolon in a macro
2861     /// body when a macro was invoked in expression position.
2862     /// However, this makes the treatment of semicolons in the language
2863     /// inconsistent, and could lead to unexpected runtime behavior
2864     /// in some circumstances (e.g. if the macro author expects
2865     /// a value to be dropped).
2866     ///
2867     /// This is a [future-incompatible] lint to transition this
2868     /// to a hard error in the future. See [issue #79813] for more details.
2869     ///
2870     /// [issue #79813]: https://github.com/rust-lang/rust/issues/79813
2871     /// [future-incompatible]: ../index.md#future-incompatible-lints
2872     pub SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
2873     Warn,
2874     "trailing semicolon in macro body used as expression",
2875     @future_incompatible = FutureIncompatibleInfo {
2876         reference: "issue #79813 <https://github.com/rust-lang/rust/issues/79813>",
2877     };
2878 }
2879
2880 declare_lint! {
2881     /// The `legacy_derive_helpers` lint detects derive helper attributes
2882     /// that are used before they are introduced.
2883     ///
2884     /// ### Example
2885     ///
2886     /// ```rust,ignore (needs extern crate)
2887     /// #[serde(rename_all = "camelCase")]
2888     /// #[derive(Deserialize)]
2889     /// struct S { /* fields */ }
2890     /// ```
2891     ///
2892     /// produces:
2893     ///
2894     /// ```text
2895     /// warning: derive helper attribute is used before it is introduced
2896     ///   --> $DIR/legacy-derive-helpers.rs:1:3
2897     ///    |
2898     ///  1 | #[serde(rename_all = "camelCase")]
2899     ///    |   ^^^^^
2900     /// ...
2901     ///  2 | #[derive(Deserialize)]
2902     ///    |          ----------- the attribute is introduced here
2903     /// ```
2904     ///
2905     /// ### Explanation
2906     ///
2907     /// Attributes like this work for historical reasons, but attribute expansion works in
2908     /// left-to-right order in general, so, to resolve `#[serde]`, compiler has to try to "look
2909     /// into the future" at not yet expanded part of the item , but such attempts are not always
2910     /// reliable.
2911     ///
2912     /// To fix the warning place the helper attribute after its corresponding derive.
2913     /// ```rust,ignore (needs extern crate)
2914     /// #[derive(Deserialize)]
2915     /// #[serde(rename_all = "camelCase")]
2916     /// struct S { /* fields */ }
2917     /// ```
2918     pub LEGACY_DERIVE_HELPERS,
2919     Warn,
2920     "detects derive helper attributes that are used before they are introduced",
2921     @future_incompatible = FutureIncompatibleInfo {
2922         reference: "issue #79202 <https://github.com/rust-lang/rust/issues/79202>",
2923     };
2924 }
2925
2926 declare_lint! {
2927     /// The `large_assignments` lint detects when objects of large
2928     /// types are being moved around.
2929     ///
2930     /// ### Example
2931     ///
2932     /// ```rust,ignore (can crash on some platforms)
2933     /// let x = [0; 50000];
2934     /// let y = x;
2935     /// ```
2936     ///
2937     /// produces:
2938     ///
2939     /// ```text
2940     /// warning: moving a large value
2941     ///   --> $DIR/move-large.rs:1:3
2942     ///   let y = x;
2943     ///           - Copied large value here
2944     /// ```
2945     ///
2946     /// ### Explanation
2947     ///
2948     /// When using a large type in a plain assignment or in a function
2949     /// argument, idiomatic code can be inefficient.
2950     /// Ideally appropriate optimizations would resolve this, but such
2951     /// optimizations are only done in a best-effort manner.
2952     /// This lint will trigger on all sites of large moves and thus allow the
2953     /// user to resolve them in code.
2954     pub LARGE_ASSIGNMENTS,
2955     Warn,
2956     "detects large moves or copies",
2957 }
2958
2959 declare_lint! {
2960     /// The `deprecated_cfg_attr_crate_type_name` lint detects uses of the
2961     /// `#![cfg_attr(..., crate_type = "...")]` and
2962     /// `#![cfg_attr(..., crate_name = "...")]` attributes to conditionally
2963     /// specify the crate type and name in the source code.
2964     ///
2965     /// ### Example
2966     ///
2967     /// ```rust
2968     /// #![cfg_attr(debug_assertions, crate_type = "lib")]
2969     /// ```
2970     ///
2971     /// {{produces}}
2972     ///
2973     ///
2974     /// ### Explanation
2975     ///
2976     /// The `#![crate_type]` and `#![crate_name]` attributes require a hack in
2977     /// the compiler to be able to change the used crate type and crate name
2978     /// after macros have been expanded. Neither attribute works in combination
2979     /// with Cargo as it explicitly passes `--crate-type` and `--crate-name` on
2980     /// the commandline. These values must match the value used in the source
2981     /// code to prevent an error.
2982     ///
2983     /// To fix the warning use `--crate-type` on the commandline when running
2984     /// rustc instead of `#![cfg_attr(..., crate_type = "...")]` and
2985     /// `--crate-name` instead of `#![cfg_attr(..., crate_name = "...")]`.
2986     pub DEPRECATED_CFG_ATTR_CRATE_TYPE_NAME,
2987     Warn,
2988     "detects usage of `#![cfg_attr(..., crate_type/crate_name = \"...\")]`",
2989     @future_incompatible = FutureIncompatibleInfo {
2990         reference: "issue #91632 <https://github.com/rust-lang/rust/issues/91632>",
2991     };
2992 }
2993
2994 declare_lint_pass! {
2995     /// Does nothing as a lint pass, but registers some `Lint`s
2996     /// that are used by other parts of the compiler.
2997     HardwiredLints => [
2998         FORBIDDEN_LINT_GROUPS,
2999         ILLEGAL_FLOATING_POINT_LITERAL_PATTERN,
3000         ARITHMETIC_OVERFLOW,
3001         UNCONDITIONAL_PANIC,
3002         UNUSED_IMPORTS,
3003         UNUSED_EXTERN_CRATES,
3004         UNUSED_CRATE_DEPENDENCIES,
3005         UNUSED_QUALIFICATIONS,
3006         UNKNOWN_LINTS,
3007         UNUSED_VARIABLES,
3008         UNUSED_ASSIGNMENTS,
3009         DEAD_CODE,
3010         UNREACHABLE_CODE,
3011         UNREACHABLE_PATTERNS,
3012         OVERLAPPING_RANGE_ENDPOINTS,
3013         BINDINGS_WITH_VARIANT_NAME,
3014         UNUSED_MACROS,
3015         WARNINGS,
3016         UNUSED_FEATURES,
3017         STABLE_FEATURES,
3018         UNKNOWN_CRATE_TYPES,
3019         TRIVIAL_CASTS,
3020         TRIVIAL_NUMERIC_CASTS,
3021         PRIVATE_IN_PUBLIC,
3022         EXPORTED_PRIVATE_DEPENDENCIES,
3023         PUB_USE_OF_PRIVATE_EXTERN_CRATE,
3024         INVALID_TYPE_PARAM_DEFAULT,
3025         CONST_ERR,
3026         RENAMED_AND_REMOVED_LINTS,
3027         UNALIGNED_REFERENCES,
3028         CONST_ITEM_MUTATION,
3029         PATTERNS_IN_FNS_WITHOUT_BODY,
3030         MISSING_FRAGMENT_SPECIFIER,
3031         LATE_BOUND_LIFETIME_ARGUMENTS,
3032         ORDER_DEPENDENT_TRAIT_OBJECTS,
3033         COHERENCE_LEAK_CHECK,
3034         DEPRECATED,
3035         UNUSED_UNSAFE,
3036         UNUSED_MUT,
3037         UNCONDITIONAL_RECURSION,
3038         SINGLE_USE_LIFETIMES,
3039         UNUSED_LIFETIMES,
3040         UNUSED_LABELS,
3041         TYVAR_BEHIND_RAW_POINTER,
3042         ELIDED_LIFETIMES_IN_PATHS,
3043         BARE_TRAIT_OBJECTS,
3044         ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
3045         UNSTABLE_NAME_COLLISIONS,
3046         IRREFUTABLE_LET_PATTERNS,
3047         WHERE_CLAUSES_OBJECT_SAFETY,
3048         PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
3049         MACRO_USE_EXTERN_CRATE,
3050         MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
3051         ILL_FORMED_ATTRIBUTE_INPUT,
3052         CONFLICTING_REPR_HINTS,
3053         META_VARIABLE_MISUSE,
3054         DEPRECATED_IN_FUTURE,
3055         AMBIGUOUS_ASSOCIATED_ITEMS,
3056         MUTABLE_BORROW_RESERVATION_CONFLICT,
3057         INDIRECT_STRUCTURAL_MATCH,
3058         POINTER_STRUCTURAL_MATCH,
3059         NONTRIVIAL_STRUCTURAL_MATCH,
3060         SOFT_UNSTABLE,
3061         INLINE_NO_SANITIZE,
3062         BAD_ASM_STYLE,
3063         ASM_SUB_REGISTER,
3064         UNSAFE_OP_IN_UNSAFE_FN,
3065         INCOMPLETE_INCLUDE,
3066         CENUM_IMPL_DROP_CAST,
3067         CONST_EVALUATABLE_UNCHECKED,
3068         INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
3069         MUST_NOT_SUSPEND,
3070         UNINHABITED_STATIC,
3071         FUNCTION_ITEM_REFERENCES,
3072         USELESS_DEPRECATED,
3073         UNSUPPORTED_NAKED_FUNCTIONS,
3074         MISSING_ABI,
3075         INVALID_DOC_ATTRIBUTES,
3076         SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
3077         RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES,
3078         LEGACY_DERIVE_HELPERS,
3079         PROC_MACRO_BACK_COMPAT,
3080         RUST_2021_INCOMPATIBLE_OR_PATTERNS,
3081         LARGE_ASSIGNMENTS,
3082         RUST_2021_PRELUDE_COLLISIONS,
3083         RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
3084         UNSUPPORTED_CALLING_CONVENTIONS,
3085         BREAK_WITH_LABEL_AND_LOOP,
3086         UNUSED_ATTRIBUTES,
3087         NON_EXHAUSTIVE_OMITTED_PATTERNS,
3088         TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
3089         DEREF_INTO_DYN_SUPERTRAIT,
3090         DEPRECATED_CFG_ATTR_CRATE_TYPE_NAME,
3091         DUPLICATE_MACRO_ATTRIBUTES,
3092     ]
3093 }
3094
3095 declare_lint! {
3096     /// The `unused_doc_comments` lint detects doc comments that aren't used
3097     /// by `rustdoc`.
3098     ///
3099     /// ### Example
3100     ///
3101     /// ```rust
3102     /// /// docs for x
3103     /// let x = 12;
3104     /// ```
3105     ///
3106     /// {{produces}}
3107     ///
3108     /// ### Explanation
3109     ///
3110     /// `rustdoc` does not use doc comments in all positions, and so the doc
3111     /// comment will be ignored. Try changing it to a normal comment with `//`
3112     /// to avoid the warning.
3113     pub UNUSED_DOC_COMMENTS,
3114     Warn,
3115     "detects doc comments that aren't used by rustdoc"
3116 }
3117
3118 declare_lint! {
3119     /// The `rust_2021_incompatible_closure_captures` lint detects variables that aren't completely
3120     /// captured in Rust 2021, such that the `Drop` order of their fields may differ between
3121     /// Rust 2018 and 2021.
3122     ///
3123     /// It can also detect when a variable implements a trait like `Send`, but one of its fields does not,
3124     /// and the field is captured by a closure and used with the assumption that said field implements
3125     /// the same trait as the root variable.
3126     ///
3127     /// ### Example of drop reorder
3128     ///
3129     /// ```rust,compile_fail
3130     /// #![deny(rust_2021_incompatible_closure_captures)]
3131     /// # #![allow(unused)]
3132     ///
3133     /// struct FancyInteger(i32);
3134     ///
3135     /// impl Drop for FancyInteger {
3136     ///     fn drop(&mut self) {
3137     ///         println!("Just dropped {}", self.0);
3138     ///     }
3139     /// }
3140     ///
3141     /// struct Point { x: FancyInteger, y: FancyInteger }
3142     ///
3143     /// fn main() {
3144     ///   let p = Point { x: FancyInteger(10), y: FancyInteger(20) };
3145     ///
3146     ///   let c = || {
3147     ///      let x = p.x;
3148     ///   };
3149     ///
3150     ///   c();
3151     ///
3152     ///   // ... More code ...
3153     /// }
3154     /// ```
3155     ///
3156     /// {{produces}}
3157     ///
3158     /// ### Explanation
3159     ///
3160     /// In the above example, `p.y` will be dropped at the end of `f` instead of
3161     /// with `c` in Rust 2021.
3162     ///
3163     /// ### Example of auto-trait
3164     ///
3165     /// ```rust,compile_fail
3166     /// #![deny(rust_2021_incompatible_closure_captures)]
3167     /// use std::thread;
3168     ///
3169     /// struct Pointer(*mut i32);
3170     /// unsafe impl Send for Pointer {}
3171     ///
3172     /// fn main() {
3173     ///     let mut f = 10;
3174     ///     let fptr = Pointer(&mut f as *mut i32);
3175     ///     thread::spawn(move || unsafe {
3176     ///         *fptr.0 = 20;
3177     ///     });
3178     /// }
3179     /// ```
3180     ///
3181     /// {{produces}}
3182     ///
3183     /// ### Explanation
3184     ///
3185     /// In the above example, only `fptr.0` is captured in Rust 2021.
3186     /// The field is of type `*mut i32`, which doesn't implement `Send`,
3187     /// making the code invalid as the field cannot be sent between threads safely.
3188     pub RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES,
3189     Allow,
3190     "detects closures affected by Rust 2021 changes",
3191     @future_incompatible = FutureIncompatibleInfo {
3192         reason: FutureIncompatibilityReason::EditionSemanticsChange(Edition::Edition2021),
3193         explain_reason: false,
3194     };
3195 }
3196
3197 declare_lint_pass!(UnusedDocComment => [UNUSED_DOC_COMMENTS]);
3198
3199 declare_lint! {
3200     /// The `missing_abi` lint detects cases where the ABI is omitted from
3201     /// extern declarations.
3202     ///
3203     /// ### Example
3204     ///
3205     /// ```rust,compile_fail
3206     /// #![deny(missing_abi)]
3207     ///
3208     /// extern fn foo() {}
3209     /// ```
3210     ///
3211     /// {{produces}}
3212     ///
3213     /// ### Explanation
3214     ///
3215     /// Historically, Rust implicitly selected C as the ABI for extern
3216     /// declarations. We expect to add new ABIs, like `C-unwind`, in the future,
3217     /// though this has not yet happened, and especially with their addition
3218     /// seeing the ABI easily will make code review easier.
3219     pub MISSING_ABI,
3220     Allow,
3221     "No declared ABI for extern declaration"
3222 }
3223
3224 declare_lint! {
3225     /// The `invalid_doc_attributes` lint detects when the `#[doc(...)]` is
3226     /// misused.
3227     ///
3228     /// ### Example
3229     ///
3230     /// ```rust,compile_fail
3231     /// #![deny(warnings)]
3232     ///
3233     /// pub mod submodule {
3234     ///     #![doc(test(no_crate_inject))]
3235     /// }
3236     /// ```
3237     ///
3238     /// {{produces}}
3239     ///
3240     /// ### Explanation
3241     ///
3242     /// Previously, there were very like checks being performed on `#[doc(..)]`
3243     /// unlike the other attributes. It'll now catch all the issues that it
3244     /// silently ignored previously.
3245     pub INVALID_DOC_ATTRIBUTES,
3246     Warn,
3247     "detects invalid `#[doc(...)]` attributes",
3248     @future_incompatible = FutureIncompatibleInfo {
3249         reference: "issue #82730 <https://github.com/rust-lang/rust/issues/82730>",
3250     };
3251 }
3252
3253 declare_lint! {
3254     /// The `proc_macro_back_compat` lint detects uses of old versions of certain
3255     /// proc-macro crates, which have hardcoded workarounds in the compiler.
3256     ///
3257     /// ### Example
3258     ///
3259     /// ```rust,ignore (needs-dependency)
3260     ///
3261     /// use time_macros_impl::impl_macros;
3262     /// struct Foo;
3263     /// impl_macros!(Foo);
3264     /// ```
3265     ///
3266     /// This will produce:
3267     ///
3268     /// ```text
3269     /// warning: using an old version of `time-macros-impl`
3270     ///   ::: $DIR/group-compat-hack.rs:27:5
3271     ///    |
3272     /// LL |     impl_macros!(Foo);
3273     ///    |     ------------------ in this macro invocation
3274     ///    |
3275     ///    = note: `#[warn(proc_macro_back_compat)]` on by default
3276     ///    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
3277     ///    = note: for more information, see issue #83125 <https://github.com/rust-lang/rust/issues/83125>
3278     ///    = note: the `time-macros-impl` crate will stop compiling in futures version of Rust. Please update to the latest version of the `time` crate to avoid breakage
3279     ///    = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
3280     /// ```
3281     ///
3282     /// ### Explanation
3283     ///
3284     /// Eventually, the backwards-compatibility hacks present in the compiler will be removed,
3285     /// causing older versions of certain crates to stop compiling.
3286     /// This is a [future-incompatible] lint to ease the transition to an error.
3287     /// See [issue #83125] for more details.
3288     ///
3289     /// [issue #83125]: https://github.com/rust-lang/rust/issues/83125
3290     /// [future-incompatible]: ../index.md#future-incompatible-lints
3291     pub PROC_MACRO_BACK_COMPAT,
3292     Deny,
3293     "detects usage of old versions of certain proc-macro crates",
3294     @future_incompatible = FutureIncompatibleInfo {
3295         reference: "issue #83125 <https://github.com/rust-lang/rust/issues/83125>",
3296         reason: FutureIncompatibilityReason::FutureReleaseErrorReportNow,
3297     };
3298 }
3299
3300 declare_lint! {
3301     /// The `rust_2021_incompatible_or_patterns` lint detects usage of old versions of or-patterns.
3302     ///
3303     /// ### Example
3304     ///
3305     /// ```rust,compile_fail
3306     /// #![deny(rust_2021_incompatible_or_patterns)]
3307     ///
3308     /// macro_rules! match_any {
3309     ///     ( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => {
3310     ///         match $expr {
3311     ///             $(
3312     ///                 $( $pat => $expr_arm, )+
3313     ///             )+
3314     ///         }
3315     ///     };
3316     /// }
3317     ///
3318     /// fn main() {
3319     ///     let result: Result<i64, i32> = Err(42);
3320     ///     let int: i64 = match_any!(result, Ok(i) | Err(i) => i.into());
3321     ///     assert_eq!(int, 42);
3322     /// }
3323     /// ```
3324     ///
3325     /// {{produces}}
3326     ///
3327     /// ### Explanation
3328     ///
3329     /// In Rust 2021, the `pat` matcher will match additional patterns, which include the `|` character.
3330     pub RUST_2021_INCOMPATIBLE_OR_PATTERNS,
3331     Allow,
3332     "detects usage of old versions of or-patterns",
3333     @future_incompatible = FutureIncompatibleInfo {
3334         reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/or-patterns-macro-rules.html>",
3335         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
3336     };
3337 }
3338
3339 declare_lint! {
3340     /// The `rust_2021_prelude_collisions` lint detects the usage of trait methods which are ambiguous
3341     /// with traits added to the prelude in future editions.
3342     ///
3343     /// ### Example
3344     ///
3345     /// ```rust,compile_fail
3346     /// #![deny(rust_2021_prelude_collisions)]
3347     ///
3348     /// trait Foo {
3349     ///     fn try_into(self) -> Result<String, !>;
3350     /// }
3351     ///
3352     /// impl Foo for &str {
3353     ///     fn try_into(self) -> Result<String, !> {
3354     ///         Ok(String::from(self))
3355     ///     }
3356     /// }
3357     ///
3358     /// fn main() {
3359     ///     let x: String = "3".try_into().unwrap();
3360     ///     //                  ^^^^^^^^
3361     ///     // This call to try_into matches both Foo:try_into and TryInto::try_into as
3362     ///     // `TryInto` has been added to the Rust prelude in 2021 edition.
3363     ///     println!("{}", x);
3364     /// }
3365     /// ```
3366     ///
3367     /// {{produces}}
3368     ///
3369     /// ### Explanation
3370     ///
3371     /// In Rust 2021, one of the important introductions is the [prelude changes], which add
3372     /// `TryFrom`, `TryInto`, and `FromIterator` into the standard library's prelude. Since this
3373     /// results in an ambiguity as to which method/function to call when an existing `try_into`
3374     /// method is called via dot-call syntax or a `try_from`/`from_iter` associated function
3375     /// is called directly on a type.
3376     ///
3377     /// [prelude changes]: https://blog.rust-lang.org/inside-rust/2021/03/04/planning-rust-2021.html#prelude-changes
3378     pub RUST_2021_PRELUDE_COLLISIONS,
3379     Allow,
3380     "detects the usage of trait methods which are ambiguous with traits added to the \
3381         prelude in future editions",
3382     @future_incompatible = FutureIncompatibleInfo {
3383         reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/prelude.html>",
3384         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
3385     };
3386 }
3387
3388 declare_lint! {
3389     /// The `rust_2021_prefixes_incompatible_syntax` lint detects identifiers that will be parsed as a
3390     /// prefix instead in Rust 2021.
3391     ///
3392     /// ### Example
3393     ///
3394     /// ```rust,edition2018,compile_fail
3395     /// #![deny(rust_2021_prefixes_incompatible_syntax)]
3396     ///
3397     /// macro_rules! m {
3398     ///     (z $x:expr) => ();
3399     /// }
3400     ///
3401     /// m!(z"hey");
3402     /// ```
3403     ///
3404     /// {{produces}}
3405     ///
3406     /// ### Explanation
3407     ///
3408     /// In Rust 2015 and 2018, `z"hey"` is two tokens: the identifier `z`
3409     /// followed by the string literal `"hey"`. In Rust 2021, the `z` is
3410     /// considered a prefix for `"hey"`.
3411     ///
3412     /// This lint suggests to add whitespace between the `z` and `"hey"` tokens
3413     /// to keep them separated in Rust 2021.
3414     // Allow this lint -- rustdoc doesn't yet support threading edition into this lint's parser.
3415     #[allow(rustdoc::invalid_rust_codeblocks)]
3416     pub RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
3417     Allow,
3418     "identifiers that will be parsed as a prefix in Rust 2021",
3419     @future_incompatible = FutureIncompatibleInfo {
3420         reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/reserving-syntax.html>",
3421         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
3422     };
3423     crate_level_only
3424 }
3425
3426 declare_lint! {
3427     /// The `unsupported_calling_conventions` lint is output whenever there is a use of the
3428     /// `stdcall`, `fastcall`, `thiscall`, `vectorcall` calling conventions (or their unwind
3429     /// variants) on targets that cannot meaningfully be supported for the requested target.
3430     ///
3431     /// For example `stdcall` does not make much sense for a x86_64 or, more apparently, powerpc
3432     /// code, because this calling convention was never specified for those targets.
3433     ///
3434     /// Historically MSVC toolchains have fallen back to the regular C calling convention for
3435     /// targets other than x86, but Rust doesn't really see a similar need to introduce a similar
3436     /// hack across many more targets.
3437     ///
3438     /// ### Example
3439     ///
3440     /// ```rust,ignore (needs specific targets)
3441     /// extern "stdcall" fn stdcall() {}
3442     /// ```
3443     ///
3444     /// This will produce:
3445     ///
3446     /// ```text
3447     /// warning: use of calling convention not supported on this target
3448     ///   --> $DIR/unsupported.rs:39:1
3449     ///    |
3450     /// LL | extern "stdcall" fn stdcall() {}
3451     ///    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3452     ///    |
3453     ///    = note: `#[warn(unsupported_calling_conventions)]` on by default
3454     ///    = warning: this was previously accepted by the compiler but is being phased out;
3455     ///               it will become a hard error in a future release!
3456     ///    = note: for more information, see issue ...
3457     /// ```
3458     ///
3459     /// ### Explanation
3460     ///
3461     /// On most of the targets the behaviour of `stdcall` and similar calling conventions is not
3462     /// defined at all, but was previously accepted due to a bug in the implementation of the
3463     /// compiler.
3464     pub UNSUPPORTED_CALLING_CONVENTIONS,
3465     Warn,
3466     "use of unsupported calling convention",
3467     @future_incompatible = FutureIncompatibleInfo {
3468         reference: "issue #87678 <https://github.com/rust-lang/rust/issues/87678>",
3469     };
3470 }
3471
3472 declare_lint! {
3473     /// The `break_with_label_and_loop` lint detects labeled `break` expressions with
3474     /// an unlabeled loop as their value expression.
3475     ///
3476     /// ### Example
3477     ///
3478     /// ```rust
3479     /// 'label: loop {
3480     ///     break 'label loop { break 42; };
3481     /// };
3482     /// ```
3483     ///
3484     /// {{produces}}
3485     ///
3486     /// ### Explanation
3487     ///
3488     /// In Rust, loops can have a label, and `break` expressions can refer to that label to
3489     /// break out of specific loops (and not necessarily the innermost one). `break` expressions
3490     /// can also carry a value expression, which can be another loop. A labeled `break` with an
3491     /// unlabeled loop as its value expression is easy to confuse with an unlabeled break with
3492     /// a labeled loop and is thus discouraged (but allowed for compatibility); use parentheses
3493     /// around the loop expression to silence this warning. Unlabeled `break` expressions with
3494     /// labeled loops yield a hard error, which can also be silenced by wrapping the expression
3495     /// in parentheses.
3496     pub BREAK_WITH_LABEL_AND_LOOP,
3497     Warn,
3498     "`break` expression with label and unlabeled loop as value expression"
3499 }
3500
3501 declare_lint! {
3502     /// The `non_exhaustive_omitted_patterns` lint detects when a wildcard (`_` or `..`) in a
3503     /// pattern for a `#[non_exhaustive]` struct or enum is reachable.
3504     ///
3505     /// ### Example
3506     ///
3507     /// ```rust,ignore (needs separate crate)
3508     /// // crate A
3509     /// #[non_exhaustive]
3510     /// pub enum Bar {
3511     ///     A,
3512     ///     B, // added variant in non breaking change
3513     /// }
3514     ///
3515     /// // in crate B
3516     /// #![feature(non_exhaustive_omitted_patterns_lint)]
3517     ///
3518     /// match Bar::A {
3519     ///     Bar::A => {},
3520     ///     #[warn(non_exhaustive_omitted_patterns)]
3521     ///     _ => {},
3522     /// }
3523     /// ```
3524     ///
3525     /// This will produce:
3526     ///
3527     /// ```text
3528     /// warning: reachable patterns not covered of non exhaustive enum
3529     ///    --> $DIR/reachable-patterns.rs:70:9
3530     ///    |
3531     /// LL |         _ => {}
3532     ///    |         ^ pattern `B` not covered
3533     ///    |
3534     ///  note: the lint level is defined here
3535     ///   --> $DIR/reachable-patterns.rs:69:16
3536     ///    |
3537     /// LL |         #[warn(non_exhaustive_omitted_patterns)]
3538     ///    |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3539     ///    = help: ensure that all possible cases are being handled by adding the suggested match arms
3540     ///    = note: the matched value is of type `Bar` and the `non_exhaustive_omitted_patterns` attribute was found
3541     /// ```
3542     ///
3543     /// ### Explanation
3544     ///
3545     /// Structs and enums tagged with `#[non_exhaustive]` force the user to add a
3546     /// (potentially redundant) wildcard when pattern-matching, to allow for future
3547     /// addition of fields or variants. The `non_exhaustive_omitted_patterns` lint
3548     /// detects when such a wildcard happens to actually catch some fields/variants.
3549     /// In other words, when the match without the wildcard would not be exhaustive.
3550     /// This lets the user be informed if new fields/variants were added.
3551     pub NON_EXHAUSTIVE_OMITTED_PATTERNS,
3552     Allow,
3553     "detect when patterns of types marked `non_exhaustive` are missed",
3554     @feature_gate = sym::non_exhaustive_omitted_patterns_lint;
3555 }
3556
3557 declare_lint! {
3558     /// The `text_direction_codepoint_in_comment` lint detects Unicode codepoints in comments that
3559     /// change the visual representation of text on screen in a way that does not correspond to
3560     /// their on memory representation.
3561     ///
3562     /// ### Example
3563     ///
3564     /// ```rust,compile_fail
3565     /// #![deny(text_direction_codepoint_in_comment)]
3566     /// fn main() {
3567     ///     println!("{:?}"); // '‮');
3568     /// }
3569     /// ```
3570     ///
3571     /// {{produces}}
3572     ///
3573     /// ### Explanation
3574     ///
3575     /// Unicode allows changing the visual flow of text on screen in order to support scripts that
3576     /// are written right-to-left, but a specially crafted comment can make code that will be
3577     /// compiled appear to be part of a comment, depending on the software used to read the code.
3578     /// To avoid potential problems or confusion, such as in CVE-2021-42574, by default we deny
3579     /// their use.
3580     pub TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
3581     Deny,
3582     "invisible directionality-changing codepoints in comment"
3583 }
3584
3585 declare_lint! {
3586     /// The `deref_into_dyn_supertrait` lint is output whenever there is a use of the
3587     /// `Deref` implementation with a `dyn SuperTrait` type as `Output`.
3588     ///
3589     /// These implementations will become shadowed when the `trait_upcasting` feature is stablized.
3590     /// The `deref` functions will no longer be called implicitly, so there might be behavior change.
3591     ///
3592     /// ### Example
3593     ///
3594     /// ```rust,compile_fail
3595     /// #![deny(deref_into_dyn_supertrait)]
3596     /// #![allow(dead_code)]
3597     ///
3598     /// use core::ops::Deref;
3599     ///
3600     /// trait A {}
3601     /// trait B: A {}
3602     /// impl<'a> Deref for dyn 'a + B {
3603     ///     type Target = dyn A;
3604     ///     fn deref(&self) -> &Self::Target {
3605     ///         todo!()
3606     ///     }
3607     /// }
3608     ///
3609     /// fn take_a(_: &dyn A) { }
3610     ///
3611     /// fn take_b(b: &dyn B) {
3612     ///     take_a(b);
3613     /// }
3614     /// ```
3615     ///
3616     /// {{produces}}
3617     ///
3618     /// ### Explanation
3619     ///
3620     /// The dyn upcasting coercion feature adds new coercion rules, taking priority
3621     /// over certain other coercion rules, which will cause some behavior change.
3622     pub DEREF_INTO_DYN_SUPERTRAIT,
3623     Warn,
3624     "`Deref` implementation usage with a supertrait trait object for output might be shadowed in the future",
3625     @future_incompatible = FutureIncompatibleInfo {
3626         reference: "issue #89460 <https://github.com/rust-lang/rust/issues/89460>",
3627     };
3628 }
3629
3630 declare_lint! {
3631     /// The `duplicate_macro_attributes` lint detects when a `#[test]`-like built-in macro
3632     /// attribute is duplicated on an item. This lint may trigger on `bench`, `cfg_eval`, `test`
3633     /// and `test_case`.
3634     ///
3635     /// ### Example
3636     ///
3637     /// ```rust,ignore (needs --test)
3638     /// #[test]
3639     /// #[test]
3640     /// fn foo() {}
3641     /// ```
3642     ///
3643     /// This will produce:
3644     ///
3645     /// ```text
3646     /// warning: duplicated attribute
3647     ///  --> src/lib.rs:2:1
3648     ///   |
3649     /// 2 | #[test]
3650     ///   | ^^^^^^^
3651     ///   |
3652     ///   = note: `#[warn(duplicate_macro_attributes)]` on by default
3653     /// ```
3654     ///
3655     /// ### Explanation
3656     ///
3657     /// A duplicated attribute may erroneously originate from a copy-paste and the effect of it
3658     /// being duplicated may not be obvious or desireable.
3659     ///
3660     /// For instance, doubling the `#[test]` attributes registers the test to be run twice with no
3661     /// change to its environment.
3662     ///
3663     /// [issue #90979]: https://github.com/rust-lang/rust/issues/90979
3664     pub DUPLICATE_MACRO_ATTRIBUTES,
3665     Warn,
3666     "duplicated attribute"
3667 }