]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_lint_defs/src/builtin.rs
Auto merge of #92041 - Aaron1011:remove-speculative-evaluation, r=jackh726
[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     /// ```
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     /// {{produces}}
2435     ///
2436     /// ### Explanation
2437     ///
2438     /// Registers on some architectures can use different names to refer to a
2439     /// subset of the register. By default, the compiler will use the name for
2440     /// the full register size. To explicitly use a subset of the register,
2441     /// you can override the default by using a modifier on the template
2442     /// string operand to specify when subregister to use. This lint is issued
2443     /// if you pass in a value with a smaller data type than the default
2444     /// register size, to alert you of possibly using the incorrect width. To
2445     /// fix this, add the suggested modifier to the template, or cast the
2446     /// value to the correct size.
2447     pub ASM_SUB_REGISTER,
2448     Warn,
2449     "using only a subset of a register for inline asm inputs",
2450 }
2451
2452 declare_lint! {
2453     /// The `bad_asm_style` lint detects the use of the `.intel_syntax` and
2454     /// `.att_syntax` directives.
2455     ///
2456     /// ### Example
2457     ///
2458     /// ```rust,ignore (fails on non-x86_64)
2459     /// #[cfg(target_arch="x86_64")]
2460     /// use std::arch::asm;
2461     ///
2462     /// fn main() {
2463     ///     #[cfg(target_arch="x86_64")]
2464     ///     unsafe {
2465     ///         asm!(
2466     ///             ".att_syntax",
2467     ///             "movq %{0}, %{0}", in(reg) 0usize
2468     ///         );
2469     ///     }
2470     /// }
2471     /// ```
2472     ///
2473     /// {{produces}}
2474     ///
2475     /// ### Explanation
2476     ///
2477     /// On x86, `asm!` uses the intel assembly syntax by default. While this
2478     /// can be switched using assembler directives like `.att_syntax`, using the
2479     /// `att_syntax` option is recommended instead because it will also properly
2480     /// prefix register placeholders with `%` as required by AT&T syntax.
2481     pub BAD_ASM_STYLE,
2482     Warn,
2483     "incorrect use of inline assembly",
2484 }
2485
2486 declare_lint! {
2487     /// The `unsafe_op_in_unsafe_fn` lint detects unsafe operations in unsafe
2488     /// functions without an explicit unsafe block.
2489     ///
2490     /// ### Example
2491     ///
2492     /// ```rust,compile_fail
2493     /// #![deny(unsafe_op_in_unsafe_fn)]
2494     ///
2495     /// unsafe fn foo() {}
2496     ///
2497     /// unsafe fn bar() {
2498     ///     foo();
2499     /// }
2500     ///
2501     /// fn main() {}
2502     /// ```
2503     ///
2504     /// {{produces}}
2505     ///
2506     /// ### Explanation
2507     ///
2508     /// Currently, an [`unsafe fn`] allows any [unsafe] operation within its
2509     /// body. However, this can increase the surface area of code that needs
2510     /// to be scrutinized for proper behavior. The [`unsafe` block] provides a
2511     /// convenient way to make it clear exactly which parts of the code are
2512     /// performing unsafe operations. In the future, it is desired to change
2513     /// it so that unsafe operations cannot be performed in an `unsafe fn`
2514     /// without an `unsafe` block.
2515     ///
2516     /// The fix to this is to wrap the unsafe code in an `unsafe` block.
2517     ///
2518     /// This lint is "allow" by default since this will affect a large amount
2519     /// of existing code, and the exact plan for increasing the severity is
2520     /// still being considered. See [RFC #2585] and [issue #71668] for more
2521     /// details.
2522     ///
2523     /// [`unsafe fn`]: https://doc.rust-lang.org/reference/unsafe-functions.html
2524     /// [`unsafe` block]: https://doc.rust-lang.org/reference/expressions/block-expr.html#unsafe-blocks
2525     /// [unsafe]: https://doc.rust-lang.org/reference/unsafety.html
2526     /// [RFC #2585]: https://github.com/rust-lang/rfcs/blob/master/text/2585-unsafe-block-in-unsafe-fn.md
2527     /// [issue #71668]: https://github.com/rust-lang/rust/issues/71668
2528     pub UNSAFE_OP_IN_UNSAFE_FN,
2529     Allow,
2530     "unsafe operations in unsafe functions without an explicit unsafe block are deprecated",
2531 }
2532
2533 declare_lint! {
2534     /// The `cenum_impl_drop_cast` lint detects an `as` cast of a field-less
2535     /// `enum` that implements [`Drop`].
2536     ///
2537     /// [`Drop`]: https://doc.rust-lang.org/std/ops/trait.Drop.html
2538     ///
2539     /// ### Example
2540     ///
2541     /// ```rust
2542     /// # #![allow(unused)]
2543     /// enum E {
2544     ///     A,
2545     /// }
2546     ///
2547     /// impl Drop for E {
2548     ///     fn drop(&mut self) {
2549     ///         println!("Drop");
2550     ///     }
2551     /// }
2552     ///
2553     /// fn main() {
2554     ///     let e = E::A;
2555     ///     let i = e as u32;
2556     /// }
2557     /// ```
2558     ///
2559     /// {{produces}}
2560     ///
2561     /// ### Explanation
2562     ///
2563     /// Casting a field-less `enum` that does not implement [`Copy`] to an
2564     /// integer moves the value without calling `drop`. This can result in
2565     /// surprising behavior if it was expected that `drop` should be called.
2566     /// Calling `drop` automatically would be inconsistent with other move
2567     /// operations. Since neither behavior is clear or consistent, it was
2568     /// decided that a cast of this nature will no longer be allowed.
2569     ///
2570     /// This is a [future-incompatible] lint to transition this to a hard error
2571     /// in the future. See [issue #73333] for more details.
2572     ///
2573     /// [future-incompatible]: ../index.md#future-incompatible-lints
2574     /// [issue #73333]: https://github.com/rust-lang/rust/issues/73333
2575     /// [`Copy`]: https://doc.rust-lang.org/std/marker/trait.Copy.html
2576     pub CENUM_IMPL_DROP_CAST,
2577     Warn,
2578     "a C-like enum implementing Drop is cast",
2579     @future_incompatible = FutureIncompatibleInfo {
2580         reference: "issue #73333 <https://github.com/rust-lang/rust/issues/73333>",
2581     };
2582 }
2583
2584 declare_lint! {
2585     /// The `const_evaluatable_unchecked` lint detects a generic constant used
2586     /// in a type.
2587     ///
2588     /// ### Example
2589     ///
2590     /// ```rust
2591     /// const fn foo<T>() -> usize {
2592     ///     if std::mem::size_of::<*mut T>() < 8 { // size of *mut T does not depend on T
2593     ///         4
2594     ///     } else {
2595     ///         8
2596     ///     }
2597     /// }
2598     ///
2599     /// fn test<T>() {
2600     ///     let _ = [0; foo::<T>()];
2601     /// }
2602     /// ```
2603     ///
2604     /// {{produces}}
2605     ///
2606     /// ### Explanation
2607     ///
2608     /// In the 1.43 release, some uses of generic parameters in array repeat
2609     /// expressions were accidentally allowed. This is a [future-incompatible]
2610     /// lint to transition this to a hard error in the future. See [issue
2611     /// #76200] for a more detailed description and possible fixes.
2612     ///
2613     /// [future-incompatible]: ../index.md#future-incompatible-lints
2614     /// [issue #76200]: https://github.com/rust-lang/rust/issues/76200
2615     pub CONST_EVALUATABLE_UNCHECKED,
2616     Warn,
2617     "detects a generic constant is used in a type without a emitting a warning",
2618     @future_incompatible = FutureIncompatibleInfo {
2619         reference: "issue #76200 <https://github.com/rust-lang/rust/issues/76200>",
2620     };
2621 }
2622
2623 declare_lint! {
2624     /// The `function_item_references` lint detects function references that are
2625     /// formatted with [`fmt::Pointer`] or transmuted.
2626     ///
2627     /// [`fmt::Pointer`]: https://doc.rust-lang.org/std/fmt/trait.Pointer.html
2628     ///
2629     /// ### Example
2630     ///
2631     /// ```rust
2632     /// fn foo() { }
2633     ///
2634     /// fn main() {
2635     ///     println!("{:p}", &foo);
2636     /// }
2637     /// ```
2638     ///
2639     /// {{produces}}
2640     ///
2641     /// ### Explanation
2642     ///
2643     /// Taking a reference to a function may be mistaken as a way to obtain a
2644     /// pointer to that function. This can give unexpected results when
2645     /// formatting the reference as a pointer or transmuting it. This lint is
2646     /// issued when function references are formatted as pointers, passed as
2647     /// arguments bound by [`fmt::Pointer`] or transmuted.
2648     pub FUNCTION_ITEM_REFERENCES,
2649     Warn,
2650     "suggest casting to a function pointer when attempting to take references to function items",
2651 }
2652
2653 declare_lint! {
2654     /// The `uninhabited_static` lint detects uninhabited statics.
2655     ///
2656     /// ### Example
2657     ///
2658     /// ```rust
2659     /// enum Void {}
2660     /// extern {
2661     ///     static EXTERN: Void;
2662     /// }
2663     /// ```
2664     ///
2665     /// {{produces}}
2666     ///
2667     /// ### Explanation
2668     ///
2669     /// Statics with an uninhabited type can never be initialized, so they are impossible to define.
2670     /// However, this can be side-stepped with an `extern static`, leading to problems later in the
2671     /// compiler which assumes that there are no initialized uninhabited places (such as locals or
2672     /// statics). This was accidentally allowed, but is being phased out.
2673     pub UNINHABITED_STATIC,
2674     Warn,
2675     "uninhabited static",
2676     @future_incompatible = FutureIncompatibleInfo {
2677         reference: "issue #74840 <https://github.com/rust-lang/rust/issues/74840>",
2678     };
2679 }
2680
2681 declare_lint! {
2682     /// The `useless_deprecated` lint detects deprecation attributes with no effect.
2683     ///
2684     /// ### Example
2685     ///
2686     /// ```rust,compile_fail
2687     /// struct X;
2688     ///
2689     /// #[deprecated = "message"]
2690     /// impl Default for X {
2691     ///     fn default() -> Self {
2692     ///         X
2693     ///     }
2694     /// }
2695     /// ```
2696     ///
2697     /// {{produces}}
2698     ///
2699     /// ### Explanation
2700     ///
2701     /// Deprecation attributes have no effect on trait implementations.
2702     pub USELESS_DEPRECATED,
2703     Deny,
2704     "detects deprecation attributes with no effect",
2705 }
2706
2707 declare_lint! {
2708     /// The `undefined_naked_function_abi` lint detects naked function definitions that
2709     /// either do not specify an ABI or specify the Rust ABI.
2710     ///
2711     /// ### Example
2712     ///
2713     /// ```rust
2714     /// #![feature(naked_functions)]
2715     ///
2716     /// use std::arch::asm;
2717     ///
2718     /// #[naked]
2719     /// pub fn default_abi() -> u32 {
2720     ///     unsafe { asm!("", options(noreturn)); }
2721     /// }
2722     ///
2723     /// #[naked]
2724     /// pub extern "Rust" fn rust_abi() -> u32 {
2725     ///     unsafe { asm!("", options(noreturn)); }
2726     /// }
2727     /// ```
2728     ///
2729     /// {{produces}}
2730     ///
2731     /// ### Explanation
2732     ///
2733     /// The Rust ABI is currently undefined. Therefore, naked functions should
2734     /// specify a non-Rust ABI.
2735     pub UNDEFINED_NAKED_FUNCTION_ABI,
2736     Warn,
2737     "undefined naked function ABI"
2738 }
2739
2740 declare_lint! {
2741     /// The `unsupported_naked_functions` lint detects naked function
2742     /// definitions that are unsupported but were previously accepted.
2743     ///
2744     /// ### Example
2745     ///
2746     /// ```rust
2747     /// #![feature(naked_functions)]
2748     ///
2749     /// #[naked]
2750     /// pub extern "C" fn f() -> u32 {
2751     ///     42
2752     /// }
2753     /// ```
2754     ///
2755     /// {{produces}}
2756     ///
2757     /// ### Explanation
2758     ///
2759     /// The naked functions must be defined using a single inline assembly
2760     /// block.
2761     ///
2762     /// The execution must never fall through past the end of the assembly
2763     /// code so the block must use `noreturn` option. The asm block can also
2764     /// use `att_syntax` option, but other options are not allowed.
2765     ///
2766     /// The asm block must not contain any operands other than `const` and
2767     /// `sym`. Additionally, naked function should specify a non-Rust ABI.
2768     ///
2769     /// Naked functions cannot be inlined. All forms of the `inline` attribute
2770     /// are prohibited.
2771     ///
2772     /// While other definitions of naked functions were previously accepted,
2773     /// they are unsupported and might not work reliably. This is a
2774     /// [future-incompatible] lint that will transition into hard error in
2775     /// the future.
2776     ///
2777     /// [future-incompatible]: ../index.md#future-incompatible-lints
2778     pub UNSUPPORTED_NAKED_FUNCTIONS,
2779     Warn,
2780     "unsupported naked function definitions",
2781     @future_incompatible = FutureIncompatibleInfo {
2782         reference: "issue #32408 <https://github.com/rust-lang/rust/issues/32408>",
2783     };
2784 }
2785
2786 declare_lint! {
2787     /// The `ineffective_unstable_trait_impl` lint detects `#[unstable]` attributes which are not used.
2788     ///
2789     /// ### Example
2790     ///
2791     /// ```compile_fail
2792     /// #![feature(staged_api)]
2793     ///
2794     /// #[derive(Clone)]
2795     /// #[stable(feature = "x", since = "1")]
2796     /// struct S {}
2797     ///
2798     /// #[unstable(feature = "y", issue = "none")]
2799     /// impl Copy for S {}
2800     /// ```
2801     ///
2802     /// {{produces}}
2803     ///
2804     /// ### Explanation
2805     ///
2806     /// `staged_api` does not currently support using a stability attribute on `impl` blocks.
2807     /// `impl`s are always stable if both the type and trait are stable, and always unstable otherwise.
2808     pub INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
2809     Deny,
2810     "detects `#[unstable]` on stable trait implementations for stable types"
2811 }
2812
2813 declare_lint! {
2814     /// The `semicolon_in_expressions_from_macros` lint detects trailing semicolons
2815     /// in macro bodies when the macro is invoked in expression position.
2816     /// This was previous accepted, but is being phased out.
2817     ///
2818     /// ### Example
2819     ///
2820     /// ```rust,compile_fail
2821     /// #![deny(semicolon_in_expressions_from_macros)]
2822     /// macro_rules! foo {
2823     ///     () => { true; }
2824     /// }
2825     ///
2826     /// fn main() {
2827     ///     let val = match true {
2828     ///         true => false,
2829     ///         _ => foo!()
2830     ///     };
2831     /// }
2832     /// ```
2833     ///
2834     /// {{produces}}
2835     ///
2836     /// ### Explanation
2837     ///
2838     /// Previous, Rust ignored trailing semicolon in a macro
2839     /// body when a macro was invoked in expression position.
2840     /// However, this makes the treatment of semicolons in the language
2841     /// inconsistent, and could lead to unexpected runtime behavior
2842     /// in some circumstances (e.g. if the macro author expects
2843     /// a value to be dropped).
2844     ///
2845     /// This is a [future-incompatible] lint to transition this
2846     /// to a hard error in the future. See [issue #79813] for more details.
2847     ///
2848     /// [issue #79813]: https://github.com/rust-lang/rust/issues/79813
2849     /// [future-incompatible]: ../index.md#future-incompatible-lints
2850     pub SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
2851     Warn,
2852     "trailing semicolon in macro body used as expression",
2853     @future_incompatible = FutureIncompatibleInfo {
2854         reference: "issue #79813 <https://github.com/rust-lang/rust/issues/79813>",
2855     };
2856 }
2857
2858 declare_lint! {
2859     /// The `legacy_derive_helpers` lint detects derive helper attributes
2860     /// that are used before they are introduced.
2861     ///
2862     /// ### Example
2863     ///
2864     /// ```rust,ignore (needs extern crate)
2865     /// #[serde(rename_all = "camelCase")]
2866     /// #[derive(Deserialize)]
2867     /// struct S { /* fields */ }
2868     /// ```
2869     ///
2870     /// produces:
2871     ///
2872     /// ```text
2873     /// warning: derive helper attribute is used before it is introduced
2874     ///   --> $DIR/legacy-derive-helpers.rs:1:3
2875     ///    |
2876     ///  1 | #[serde(rename_all = "camelCase")]
2877     ///    |   ^^^^^
2878     /// ...
2879     ///  2 | #[derive(Deserialize)]
2880     ///    |          ----------- the attribute is introduced here
2881     /// ```
2882     ///
2883     /// ### Explanation
2884     ///
2885     /// Attributes like this work for historical reasons, but attribute expansion works in
2886     /// left-to-right order in general, so, to resolve `#[serde]`, compiler has to try to "look
2887     /// into the future" at not yet expanded part of the item , but such attempts are not always
2888     /// reliable.
2889     ///
2890     /// To fix the warning place the helper attribute after its corresponding derive.
2891     /// ```rust,ignore (needs extern crate)
2892     /// #[derive(Deserialize)]
2893     /// #[serde(rename_all = "camelCase")]
2894     /// struct S { /* fields */ }
2895     /// ```
2896     pub LEGACY_DERIVE_HELPERS,
2897     Warn,
2898     "detects derive helper attributes that are used before they are introduced",
2899     @future_incompatible = FutureIncompatibleInfo {
2900         reference: "issue #79202 <https://github.com/rust-lang/rust/issues/79202>",
2901     };
2902 }
2903
2904 declare_lint! {
2905     /// The `large_assignments` lint detects when objects of large
2906     /// types are being moved around.
2907     ///
2908     /// ### Example
2909     ///
2910     /// ```rust,ignore (can crash on some platforms)
2911     /// let x = [0; 50000];
2912     /// let y = x;
2913     /// ```
2914     ///
2915     /// produces:
2916     ///
2917     /// ```text
2918     /// warning: moving a large value
2919     ///   --> $DIR/move-large.rs:1:3
2920     ///   let y = x;
2921     ///           - Copied large value here
2922     /// ```
2923     ///
2924     /// ### Explanation
2925     ///
2926     /// When using a large type in a plain assignment or in a function
2927     /// argument, idiomatic code can be inefficient.
2928     /// Ideally appropriate optimizations would resolve this, but such
2929     /// optimizations are only done in a best-effort manner.
2930     /// This lint will trigger on all sites of large moves and thus allow the
2931     /// user to resolve them in code.
2932     pub LARGE_ASSIGNMENTS,
2933     Warn,
2934     "detects large moves or copies",
2935 }
2936
2937 declare_lint! {
2938     /// The `deprecated_cfg_attr_crate_type_name` lint detects uses of the
2939     /// `#![cfg_attr(..., crate_type = "...")]` and
2940     /// `#![cfg_attr(..., crate_name = "...")]` attributes to conditionally
2941     /// specify the crate type and name in the source code.
2942     ///
2943     /// ### Example
2944     ///
2945     /// ```rust
2946     /// #![cfg_attr(debug_assertions, crate_type = "lib")]
2947     /// ```
2948     ///
2949     /// {{produces}}
2950     ///
2951     ///
2952     /// ### Explanation
2953     ///
2954     /// The `#![crate_type]` and `#![crate_name]` attributes require a hack in
2955     /// the compiler to be able to change the used crate type and crate name
2956     /// after macros have been expanded. Neither attribute works in combination
2957     /// with Cargo as it explicitly passes `--crate-type` and `--crate-name` on
2958     /// the commandline. These values must match the value used in the source
2959     /// code to prevent an error.
2960     ///
2961     /// To fix the warning use `--crate-type` on the commandline when running
2962     /// rustc instead of `#![cfg_attr(..., crate_type = "...")]` and
2963     /// `--crate-name` instead of `#![cfg_attr(..., crate_name = "...")]`.
2964     pub DEPRECATED_CFG_ATTR_CRATE_TYPE_NAME,
2965     Warn,
2966     "detects usage of `#![cfg_attr(..., crate_type/crate_name = \"...\")]`",
2967     @future_incompatible = FutureIncompatibleInfo {
2968         reference: "issue #91632 <https://github.com/rust-lang/rust/issues/91632>",
2969     };
2970 }
2971
2972 declare_lint_pass! {
2973     /// Does nothing as a lint pass, but registers some `Lint`s
2974     /// that are used by other parts of the compiler.
2975     HardwiredLints => [
2976         FORBIDDEN_LINT_GROUPS,
2977         ILLEGAL_FLOATING_POINT_LITERAL_PATTERN,
2978         ARITHMETIC_OVERFLOW,
2979         UNCONDITIONAL_PANIC,
2980         UNUSED_IMPORTS,
2981         UNUSED_EXTERN_CRATES,
2982         UNUSED_CRATE_DEPENDENCIES,
2983         UNUSED_QUALIFICATIONS,
2984         UNKNOWN_LINTS,
2985         UNUSED_VARIABLES,
2986         UNUSED_ASSIGNMENTS,
2987         DEAD_CODE,
2988         UNREACHABLE_CODE,
2989         UNREACHABLE_PATTERNS,
2990         OVERLAPPING_RANGE_ENDPOINTS,
2991         BINDINGS_WITH_VARIANT_NAME,
2992         UNUSED_MACROS,
2993         WARNINGS,
2994         UNUSED_FEATURES,
2995         STABLE_FEATURES,
2996         UNKNOWN_CRATE_TYPES,
2997         TRIVIAL_CASTS,
2998         TRIVIAL_NUMERIC_CASTS,
2999         PRIVATE_IN_PUBLIC,
3000         EXPORTED_PRIVATE_DEPENDENCIES,
3001         PUB_USE_OF_PRIVATE_EXTERN_CRATE,
3002         INVALID_TYPE_PARAM_DEFAULT,
3003         CONST_ERR,
3004         RENAMED_AND_REMOVED_LINTS,
3005         UNALIGNED_REFERENCES,
3006         CONST_ITEM_MUTATION,
3007         PATTERNS_IN_FNS_WITHOUT_BODY,
3008         MISSING_FRAGMENT_SPECIFIER,
3009         LATE_BOUND_LIFETIME_ARGUMENTS,
3010         ORDER_DEPENDENT_TRAIT_OBJECTS,
3011         COHERENCE_LEAK_CHECK,
3012         DEPRECATED,
3013         UNUSED_UNSAFE,
3014         UNUSED_MUT,
3015         UNCONDITIONAL_RECURSION,
3016         SINGLE_USE_LIFETIMES,
3017         UNUSED_LIFETIMES,
3018         UNUSED_LABELS,
3019         TYVAR_BEHIND_RAW_POINTER,
3020         ELIDED_LIFETIMES_IN_PATHS,
3021         BARE_TRAIT_OBJECTS,
3022         ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
3023         UNSTABLE_NAME_COLLISIONS,
3024         IRREFUTABLE_LET_PATTERNS,
3025         WHERE_CLAUSES_OBJECT_SAFETY,
3026         PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
3027         MACRO_USE_EXTERN_CRATE,
3028         MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
3029         ILL_FORMED_ATTRIBUTE_INPUT,
3030         CONFLICTING_REPR_HINTS,
3031         META_VARIABLE_MISUSE,
3032         DEPRECATED_IN_FUTURE,
3033         AMBIGUOUS_ASSOCIATED_ITEMS,
3034         MUTABLE_BORROW_RESERVATION_CONFLICT,
3035         INDIRECT_STRUCTURAL_MATCH,
3036         POINTER_STRUCTURAL_MATCH,
3037         NONTRIVIAL_STRUCTURAL_MATCH,
3038         SOFT_UNSTABLE,
3039         INLINE_NO_SANITIZE,
3040         BAD_ASM_STYLE,
3041         ASM_SUB_REGISTER,
3042         UNSAFE_OP_IN_UNSAFE_FN,
3043         INCOMPLETE_INCLUDE,
3044         CENUM_IMPL_DROP_CAST,
3045         CONST_EVALUATABLE_UNCHECKED,
3046         INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
3047         MUST_NOT_SUSPEND,
3048         UNINHABITED_STATIC,
3049         FUNCTION_ITEM_REFERENCES,
3050         USELESS_DEPRECATED,
3051         UNSUPPORTED_NAKED_FUNCTIONS,
3052         MISSING_ABI,
3053         INVALID_DOC_ATTRIBUTES,
3054         SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
3055         RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES,
3056         LEGACY_DERIVE_HELPERS,
3057         PROC_MACRO_BACK_COMPAT,
3058         RUST_2021_INCOMPATIBLE_OR_PATTERNS,
3059         LARGE_ASSIGNMENTS,
3060         RUST_2021_PRELUDE_COLLISIONS,
3061         RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
3062         UNSUPPORTED_CALLING_CONVENTIONS,
3063         BREAK_WITH_LABEL_AND_LOOP,
3064         UNUSED_ATTRIBUTES,
3065         NON_EXHAUSTIVE_OMITTED_PATTERNS,
3066         TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
3067         DEREF_INTO_DYN_SUPERTRAIT,
3068         DEPRECATED_CFG_ATTR_CRATE_TYPE_NAME,
3069         DUPLICATE_MACRO_ATTRIBUTES,
3070     ]
3071 }
3072
3073 declare_lint! {
3074     /// The `unused_doc_comments` lint detects doc comments that aren't used
3075     /// by `rustdoc`.
3076     ///
3077     /// ### Example
3078     ///
3079     /// ```rust
3080     /// /// docs for x
3081     /// let x = 12;
3082     /// ```
3083     ///
3084     /// {{produces}}
3085     ///
3086     /// ### Explanation
3087     ///
3088     /// `rustdoc` does not use doc comments in all positions, and so the doc
3089     /// comment will be ignored. Try changing it to a normal comment with `//`
3090     /// to avoid the warning.
3091     pub UNUSED_DOC_COMMENTS,
3092     Warn,
3093     "detects doc comments that aren't used by rustdoc"
3094 }
3095
3096 declare_lint! {
3097     /// The `rust_2021_incompatible_closure_captures` lint detects variables that aren't completely
3098     /// captured in Rust 2021, such that the `Drop` order of their fields may differ between
3099     /// Rust 2018 and 2021.
3100     ///
3101     /// It can also detect when a variable implements a trait like `Send`, but one of its fields does not,
3102     /// and the field is captured by a closure and used with the assumption that said field implements
3103     /// the same trait as the root variable.
3104     ///
3105     /// ### Example of drop reorder
3106     ///
3107     /// ```rust,compile_fail
3108     /// #![deny(rust_2021_incompatible_closure_captures)]
3109     /// # #![allow(unused)]
3110     ///
3111     /// struct FancyInteger(i32);
3112     ///
3113     /// impl Drop for FancyInteger {
3114     ///     fn drop(&mut self) {
3115     ///         println!("Just dropped {}", self.0);
3116     ///     }
3117     /// }
3118     ///
3119     /// struct Point { x: FancyInteger, y: FancyInteger }
3120     ///
3121     /// fn main() {
3122     ///   let p = Point { x: FancyInteger(10), y: FancyInteger(20) };
3123     ///
3124     ///   let c = || {
3125     ///      let x = p.x;
3126     ///   };
3127     ///
3128     ///   c();
3129     ///
3130     ///   // ... More code ...
3131     /// }
3132     /// ```
3133     ///
3134     /// {{produces}}
3135     ///
3136     /// ### Explanation
3137     ///
3138     /// In the above example, `p.y` will be dropped at the end of `f` instead of
3139     /// with `c` in Rust 2021.
3140     ///
3141     /// ### Example of auto-trait
3142     ///
3143     /// ```rust,compile_fail
3144     /// #![deny(rust_2021_incompatible_closure_captures)]
3145     /// use std::thread;
3146     ///
3147     /// struct Pointer(*mut i32);
3148     /// unsafe impl Send for Pointer {}
3149     ///
3150     /// fn main() {
3151     ///     let mut f = 10;
3152     ///     let fptr = Pointer(&mut f as *mut i32);
3153     ///     thread::spawn(move || unsafe {
3154     ///         *fptr.0 = 20;
3155     ///     });
3156     /// }
3157     /// ```
3158     ///
3159     /// {{produces}}
3160     ///
3161     /// ### Explanation
3162     ///
3163     /// In the above example, only `fptr.0` is captured in Rust 2021.
3164     /// The field is of type `*mut i32`, which doesn't implement `Send`,
3165     /// making the code invalid as the field cannot be sent between threads safely.
3166     pub RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES,
3167     Allow,
3168     "detects closures affected by Rust 2021 changes",
3169     @future_incompatible = FutureIncompatibleInfo {
3170         reason: FutureIncompatibilityReason::EditionSemanticsChange(Edition::Edition2021),
3171         explain_reason: false,
3172     };
3173 }
3174
3175 declare_lint_pass!(UnusedDocComment => [UNUSED_DOC_COMMENTS]);
3176
3177 declare_lint! {
3178     /// The `missing_abi` lint detects cases where the ABI is omitted from
3179     /// extern declarations.
3180     ///
3181     /// ### Example
3182     ///
3183     /// ```rust,compile_fail
3184     /// #![deny(missing_abi)]
3185     ///
3186     /// extern fn foo() {}
3187     /// ```
3188     ///
3189     /// {{produces}}
3190     ///
3191     /// ### Explanation
3192     ///
3193     /// Historically, Rust implicitly selected C as the ABI for extern
3194     /// declarations. We expect to add new ABIs, like `C-unwind`, in the future,
3195     /// though this has not yet happened, and especially with their addition
3196     /// seeing the ABI easily will make code review easier.
3197     pub MISSING_ABI,
3198     Allow,
3199     "No declared ABI for extern declaration"
3200 }
3201
3202 declare_lint! {
3203     /// The `invalid_doc_attributes` lint detects when the `#[doc(...)]` is
3204     /// misused.
3205     ///
3206     /// ### Example
3207     ///
3208     /// ```rust,compile_fail
3209     /// #![deny(warnings)]
3210     ///
3211     /// pub mod submodule {
3212     ///     #![doc(test(no_crate_inject))]
3213     /// }
3214     /// ```
3215     ///
3216     /// {{produces}}
3217     ///
3218     /// ### Explanation
3219     ///
3220     /// Previously, there were very like checks being performed on `#[doc(..)]`
3221     /// unlike the other attributes. It'll now catch all the issues that it
3222     /// silently ignored previously.
3223     pub INVALID_DOC_ATTRIBUTES,
3224     Warn,
3225     "detects invalid `#[doc(...)]` attributes",
3226     @future_incompatible = FutureIncompatibleInfo {
3227         reference: "issue #82730 <https://github.com/rust-lang/rust/issues/82730>",
3228     };
3229 }
3230
3231 declare_lint! {
3232     /// The `proc_macro_back_compat` lint detects uses of old versions of certain
3233     /// proc-macro crates, which have hardcoded workarounds in the compiler.
3234     ///
3235     /// ### Example
3236     ///
3237     /// ```rust,ignore (needs-dependency)
3238     ///
3239     /// use time_macros_impl::impl_macros;
3240     /// struct Foo;
3241     /// impl_macros!(Foo);
3242     /// ```
3243     ///
3244     /// This will produce:
3245     ///
3246     /// ```text
3247     /// warning: using an old version of `time-macros-impl`
3248     ///   ::: $DIR/group-compat-hack.rs:27:5
3249     ///    |
3250     /// LL |     impl_macros!(Foo);
3251     ///    |     ------------------ in this macro invocation
3252     ///    |
3253     ///    = note: `#[warn(proc_macro_back_compat)]` on by default
3254     ///    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
3255     ///    = note: for more information, see issue #83125 <https://github.com/rust-lang/rust/issues/83125>
3256     ///    = 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
3257     ///    = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
3258     /// ```
3259     ///
3260     /// ### Explanation
3261     ///
3262     /// Eventually, the backwards-compatibility hacks present in the compiler will be removed,
3263     /// causing older versions of certain crates to stop compiling.
3264     /// This is a [future-incompatible] lint to ease the transition to an error.
3265     /// See [issue #83125] for more details.
3266     ///
3267     /// [issue #83125]: https://github.com/rust-lang/rust/issues/83125
3268     /// [future-incompatible]: ../index.md#future-incompatible-lints
3269     pub PROC_MACRO_BACK_COMPAT,
3270     Deny,
3271     "detects usage of old versions of certain proc-macro crates",
3272     @future_incompatible = FutureIncompatibleInfo {
3273         reference: "issue #83125 <https://github.com/rust-lang/rust/issues/83125>",
3274         reason: FutureIncompatibilityReason::FutureReleaseErrorReportNow,
3275     };
3276 }
3277
3278 declare_lint! {
3279     /// The `rust_2021_incompatible_or_patterns` lint detects usage of old versions of or-patterns.
3280     ///
3281     /// ### Example
3282     ///
3283     /// ```rust,compile_fail
3284     /// #![deny(rust_2021_incompatible_or_patterns)]
3285     ///
3286     /// macro_rules! match_any {
3287     ///     ( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => {
3288     ///         match $expr {
3289     ///             $(
3290     ///                 $( $pat => $expr_arm, )+
3291     ///             )+
3292     ///         }
3293     ///     };
3294     /// }
3295     ///
3296     /// fn main() {
3297     ///     let result: Result<i64, i32> = Err(42);
3298     ///     let int: i64 = match_any!(result, Ok(i) | Err(i) => i.into());
3299     ///     assert_eq!(int, 42);
3300     /// }
3301     /// ```
3302     ///
3303     /// {{produces}}
3304     ///
3305     /// ### Explanation
3306     ///
3307     /// In Rust 2021, the `pat` matcher will match additional patterns, which include the `|` character.
3308     pub RUST_2021_INCOMPATIBLE_OR_PATTERNS,
3309     Allow,
3310     "detects usage of old versions of or-patterns",
3311     @future_incompatible = FutureIncompatibleInfo {
3312         reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/or-patterns-macro-rules.html>",
3313         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
3314     };
3315 }
3316
3317 declare_lint! {
3318     /// The `rust_2021_prelude_collisions` lint detects the usage of trait methods which are ambiguous
3319     /// with traits added to the prelude in future editions.
3320     ///
3321     /// ### Example
3322     ///
3323     /// ```rust,compile_fail
3324     /// #![deny(rust_2021_prelude_collisions)]
3325     ///
3326     /// trait Foo {
3327     ///     fn try_into(self) -> Result<String, !>;
3328     /// }
3329     ///
3330     /// impl Foo for &str {
3331     ///     fn try_into(self) -> Result<String, !> {
3332     ///         Ok(String::from(self))
3333     ///     }
3334     /// }
3335     ///
3336     /// fn main() {
3337     ///     let x: String = "3".try_into().unwrap();
3338     ///     //                  ^^^^^^^^
3339     ///     // This call to try_into matches both Foo:try_into and TryInto::try_into as
3340     ///     // `TryInto` has been added to the Rust prelude in 2021 edition.
3341     ///     println!("{}", x);
3342     /// }
3343     /// ```
3344     ///
3345     /// {{produces}}
3346     ///
3347     /// ### Explanation
3348     ///
3349     /// In Rust 2021, one of the important introductions is the [prelude changes], which add
3350     /// `TryFrom`, `TryInto`, and `FromIterator` into the standard library's prelude. Since this
3351     /// results in an ambiguity as to which method/function to call when an existing `try_into`
3352     /// method is called via dot-call syntax or a `try_from`/`from_iter` associated function
3353     /// is called directly on a type.
3354     ///
3355     /// [prelude changes]: https://blog.rust-lang.org/inside-rust/2021/03/04/planning-rust-2021.html#prelude-changes
3356     pub RUST_2021_PRELUDE_COLLISIONS,
3357     Allow,
3358     "detects the usage of trait methods which are ambiguous with traits added to the \
3359         prelude in future editions",
3360     @future_incompatible = FutureIncompatibleInfo {
3361         reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/prelude.html>",
3362         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
3363     };
3364 }
3365
3366 declare_lint! {
3367     /// The `rust_2021_prefixes_incompatible_syntax` lint detects identifiers that will be parsed as a
3368     /// prefix instead in Rust 2021.
3369     ///
3370     /// ### Example
3371     ///
3372     /// ```rust,edition2018,compile_fail
3373     /// #![deny(rust_2021_prefixes_incompatible_syntax)]
3374     ///
3375     /// macro_rules! m {
3376     ///     (z $x:expr) => ();
3377     /// }
3378     ///
3379     /// m!(z"hey");
3380     /// ```
3381     ///
3382     /// {{produces}}
3383     ///
3384     /// ### Explanation
3385     ///
3386     /// In Rust 2015 and 2018, `z"hey"` is two tokens: the identifier `z`
3387     /// followed by the string literal `"hey"`. In Rust 2021, the `z` is
3388     /// considered a prefix for `"hey"`.
3389     ///
3390     /// This lint suggests to add whitespace between the `z` and `"hey"` tokens
3391     /// to keep them separated in Rust 2021.
3392     // Allow this lint -- rustdoc doesn't yet support threading edition into this lint's parser.
3393     #[allow(rustdoc::invalid_rust_codeblocks)]
3394     pub RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
3395     Allow,
3396     "identifiers that will be parsed as a prefix in Rust 2021",
3397     @future_incompatible = FutureIncompatibleInfo {
3398         reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/reserving-syntax.html>",
3399         reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
3400     };
3401     crate_level_only
3402 }
3403
3404 declare_lint! {
3405     /// The `unsupported_calling_conventions` lint is output whenever there is a use of the
3406     /// `stdcall`, `fastcall`, `thiscall`, `vectorcall` calling conventions (or their unwind
3407     /// variants) on targets that cannot meaningfully be supported for the requested target.
3408     ///
3409     /// For example `stdcall` does not make much sense for a x86_64 or, more apparently, powerpc
3410     /// code, because this calling convention was never specified for those targets.
3411     ///
3412     /// Historically MSVC toolchains have fallen back to the regular C calling convention for
3413     /// targets other than x86, but Rust doesn't really see a similar need to introduce a similar
3414     /// hack across many more targets.
3415     ///
3416     /// ### Example
3417     ///
3418     /// ```rust,ignore (needs specific targets)
3419     /// extern "stdcall" fn stdcall() {}
3420     /// ```
3421     ///
3422     /// This will produce:
3423     ///
3424     /// ```text
3425     /// warning: use of calling convention not supported on this target
3426     ///   --> $DIR/unsupported.rs:39:1
3427     ///    |
3428     /// LL | extern "stdcall" fn stdcall() {}
3429     ///    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3430     ///    |
3431     ///    = note: `#[warn(unsupported_calling_conventions)]` on by default
3432     ///    = warning: this was previously accepted by the compiler but is being phased out;
3433     ///               it will become a hard error in a future release!
3434     ///    = note: for more information, see issue ...
3435     /// ```
3436     ///
3437     /// ### Explanation
3438     ///
3439     /// On most of the targets the behaviour of `stdcall` and similar calling conventions is not
3440     /// defined at all, but was previously accepted due to a bug in the implementation of the
3441     /// compiler.
3442     pub UNSUPPORTED_CALLING_CONVENTIONS,
3443     Warn,
3444     "use of unsupported calling convention",
3445     @future_incompatible = FutureIncompatibleInfo {
3446         reference: "issue #87678 <https://github.com/rust-lang/rust/issues/87678>",
3447     };
3448 }
3449
3450 declare_lint! {
3451     /// The `break_with_label_and_loop` lint detects labeled `break` expressions with
3452     /// an unlabeled loop as their value expression.
3453     ///
3454     /// ### Example
3455     ///
3456     /// ```rust
3457     /// 'label: loop {
3458     ///     break 'label loop { break 42; };
3459     /// };
3460     /// ```
3461     ///
3462     /// {{produces}}
3463     ///
3464     /// ### Explanation
3465     ///
3466     /// In Rust, loops can have a label, and `break` expressions can refer to that label to
3467     /// break out of specific loops (and not necessarily the innermost one). `break` expressions
3468     /// can also carry a value expression, which can be another loop. A labeled `break` with an
3469     /// unlabeled loop as its value expression is easy to confuse with an unlabeled break with
3470     /// a labeled loop and is thus discouraged (but allowed for compatibility); use parentheses
3471     /// around the loop expression to silence this warning. Unlabeled `break` expressions with
3472     /// labeled loops yield a hard error, which can also be silenced by wrapping the expression
3473     /// in parentheses.
3474     pub BREAK_WITH_LABEL_AND_LOOP,
3475     Warn,
3476     "`break` expression with label and unlabeled loop as value expression"
3477 }
3478
3479 declare_lint! {
3480     /// The `non_exhaustive_omitted_patterns` lint detects when a wildcard (`_` or `..`) in a
3481     /// pattern for a `#[non_exhaustive]` struct or enum is reachable.
3482     ///
3483     /// ### Example
3484     ///
3485     /// ```rust,ignore (needs separate crate)
3486     /// // crate A
3487     /// #[non_exhaustive]
3488     /// pub enum Bar {
3489     ///     A,
3490     ///     B, // added variant in non breaking change
3491     /// }
3492     ///
3493     /// // in crate B
3494     /// #![feature(non_exhaustive_omitted_patterns_lint)]
3495     ///
3496     /// match Bar::A {
3497     ///     Bar::A => {},
3498     ///     #[warn(non_exhaustive_omitted_patterns)]
3499     ///     _ => {},
3500     /// }
3501     /// ```
3502     ///
3503     /// This will produce:
3504     ///
3505     /// ```text
3506     /// warning: reachable patterns not covered of non exhaustive enum
3507     ///    --> $DIR/reachable-patterns.rs:70:9
3508     ///    |
3509     /// LL |         _ => {}
3510     ///    |         ^ pattern `B` not covered
3511     ///    |
3512     ///  note: the lint level is defined here
3513     ///   --> $DIR/reachable-patterns.rs:69:16
3514     ///    |
3515     /// LL |         #[warn(non_exhaustive_omitted_patterns)]
3516     ///    |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3517     ///    = help: ensure that all possible cases are being handled by adding the suggested match arms
3518     ///    = note: the matched value is of type `Bar` and the `non_exhaustive_omitted_patterns` attribute was found
3519     /// ```
3520     ///
3521     /// ### Explanation
3522     ///
3523     /// Structs and enums tagged with `#[non_exhaustive]` force the user to add a
3524     /// (potentially redundant) wildcard when pattern-matching, to allow for future
3525     /// addition of fields or variants. The `non_exhaustive_omitted_patterns` lint
3526     /// detects when such a wildcard happens to actually catch some fields/variants.
3527     /// In other words, when the match without the wildcard would not be exhaustive.
3528     /// This lets the user be informed if new fields/variants were added.
3529     pub NON_EXHAUSTIVE_OMITTED_PATTERNS,
3530     Allow,
3531     "detect when patterns of types marked `non_exhaustive` are missed",
3532     @feature_gate = sym::non_exhaustive_omitted_patterns_lint;
3533 }
3534
3535 declare_lint! {
3536     /// The `text_direction_codepoint_in_comment` lint detects Unicode codepoints in comments that
3537     /// change the visual representation of text on screen in a way that does not correspond to
3538     /// their on memory representation.
3539     ///
3540     /// ### Example
3541     ///
3542     /// ```rust,compile_fail
3543     /// #![deny(text_direction_codepoint_in_comment)]
3544     /// fn main() {
3545     ///     println!("{:?}"); // '‮');
3546     /// }
3547     /// ```
3548     ///
3549     /// {{produces}}
3550     ///
3551     /// ### Explanation
3552     ///
3553     /// Unicode allows changing the visual flow of text on screen in order to support scripts that
3554     /// are written right-to-left, but a specially crafted comment can make code that will be
3555     /// compiled appear to be part of a comment, depending on the software used to read the code.
3556     /// To avoid potential problems or confusion, such as in CVE-2021-42574, by default we deny
3557     /// their use.
3558     pub TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
3559     Deny,
3560     "invisible directionality-changing codepoints in comment"
3561 }
3562
3563 declare_lint! {
3564     /// The `deref_into_dyn_supertrait` lint is output whenever there is a use of the
3565     /// `Deref` implementation with a `dyn SuperTrait` type as `Output`.
3566     ///
3567     /// These implementations will become shadowed when the `trait_upcasting` feature is stablized.
3568     /// The `deref` functions will no longer be called implicitly, so there might be behavior change.
3569     ///
3570     /// ### Example
3571     ///
3572     /// ```rust,compile_fail
3573     /// #![deny(deref_into_dyn_supertrait)]
3574     /// #![allow(dead_code)]
3575     ///
3576     /// use core::ops::Deref;
3577     ///
3578     /// trait A {}
3579     /// trait B: A {}
3580     /// impl<'a> Deref for dyn 'a + B {
3581     ///     type Target = dyn A;
3582     ///     fn deref(&self) -> &Self::Target {
3583     ///         todo!()
3584     ///     }
3585     /// }
3586     ///
3587     /// fn take_a(_: &dyn A) { }
3588     ///
3589     /// fn take_b(b: &dyn B) {
3590     ///     take_a(b);
3591     /// }
3592     /// ```
3593     ///
3594     /// {{produces}}
3595     ///
3596     /// ### Explanation
3597     ///
3598     /// The dyn upcasting coercion feature adds new coercion rules, taking priority
3599     /// over certain other coercion rules, which will cause some behavior change.
3600     pub DEREF_INTO_DYN_SUPERTRAIT,
3601     Warn,
3602     "`Deref` implementation usage with a supertrait trait object for output might be shadowed in the future",
3603     @future_incompatible = FutureIncompatibleInfo {
3604         reference: "issue #89460 <https://github.com/rust-lang/rust/issues/89460>",
3605     };
3606 }
3607
3608 declare_lint! {
3609     /// The `duplicate_macro_attributes` lint detects when a `#[test]`-like built-in macro
3610     /// attribute is duplicated on an item. This lint may trigger on `bench`, `cfg_eval`, `test`
3611     /// and `test_case`.
3612     ///
3613     /// ### Example
3614     ///
3615     /// ```rust,ignore (needs --test)
3616     /// #[test]
3617     /// #[test]
3618     /// fn foo() {}
3619     /// ```
3620     ///
3621     /// {{produces}}
3622     ///
3623     /// ### Explanation
3624     ///
3625     /// A duplicated attribute may erroneously originate from a copy-paste and the effect of it
3626     /// being duplicated may not be obvious or desireable.
3627     ///
3628     /// For instance, doubling the `#[test]` attributes registers the test to be run twice with no
3629     /// change to its environment.
3630     ///
3631     /// [issue #90979]: https://github.com/rust-lang/rust/issues/90979
3632     pub DUPLICATE_MACRO_ATTRIBUTES,
3633     Warn,
3634     "duplicated attribute"
3635 }