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//! When removing a lint, make sure to also add a call to `register_removed` in
8//! compiler/rustc_lint/src/lib.rs.
910use crate::{declare_lint, declare_lint_pass, fcw};
1112pub mod hardwired {
13use super::*;
1415pub fn lint_vec() -> crate::LintVec {
16::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[AARCH64_SOFTFLOAT_NEON, ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
AMBIGUOUS_ASSOCIATED_ITEMS, AMBIGUOUS_DERIVE_HELPERS,
AMBIGUOUS_GLOB_IMPORTED_TRAITS, AMBIGUOUS_GLOB_IMPORTS,
AMBIGUOUS_GLOB_REEXPORTS, AMBIGUOUS_IMPORT_VISIBILITIES,
AMBIGUOUS_PANIC_IMPORTS, ARITHMETIC_OVERFLOW,
ASM_SUB_REGISTER, BAD_ASM_STYLE, BARE_TRAIT_OBJECTS,
BINDINGS_WITH_VARIANT_NAME, BREAK_WITH_LABEL_AND_LOOP,
COHERENCE_LEAK_CHECK, CONFLICTING_REPR_HINTS,
CONST_EVALUATABLE_UNCHECKED, CONST_ITEM_MUTATION, DEAD_CODE,
DEAD_CODE_PUB_IN_BINARY,
DEPENDENCY_ON_UNIT_NEVER_TYPE_FALLBACK, DEPRECATED,
DEPRECATED_IN_FUTURE, DEPRECATED_LLVM_INTRINSIC,
DEPRECATED_SAFE_2024, DEPRECATED_WHERE_CLAUSE_LOCATION,
DUPLICATE_FEATURES, DUPLICATE_MACRO_ATTRIBUTES,
DUPLICATE_TOOLS, ELIDED_LIFETIMES_IN_PATHS,
EXPLICIT_BUILTIN_CFGS_IN_FLAGS, EXPORTED_PRIVATE_DEPENDENCIES,
FFI_UNWIND_CALLS, FLOAT_LITERAL_F32_FALLBACK,
FORBIDDEN_LINT_GROUPS, FUNCTION_ITEM_REFERENCES,
HIDDEN_GLOB_REEXPORTS, ILL_FORMED_ATTRIBUTE_INPUT,
INCOMPLETE_INCLUDE, INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
INLINE_NO_SANITIZE, INVALID_DOC_ATTRIBUTES,
INVALID_MACRO_EXPORT_ARGUMENTS, INVALID_TYPE_PARAM_DEFAULT,
IRREFUTABLE_LET_PATTERNS, LARGE_ASSIGNMENTS,
LATE_BOUND_LIFETIME_ARGUMENTS, LEGACY_DERIVE_HELPERS,
LINKER_INFO, LINKER_MESSAGES, LONG_RUNNING_CONST_EVAL,
MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
MACRO_USE_EXTERN_CRATE, MALFORMED_DIAGNOSTIC_ATTRIBUTES,
MALFORMED_DIAGNOSTIC_FILTERS,
MALFORMED_DIAGNOSTIC_FORMAT_LITERALS, META_VARIABLE_MISUSE,
METHOD_CALL_ON_DIVERGING_INFER_VAR,
MISPLACED_DIAGNOSTIC_ATTRIBUTES, MISSING_ABI,
MISSING_UNSAFE_ON_EXTERN, MUST_NOT_SUSPEND,
NAMED_ARGUMENTS_USED_POSITIONALLY,
NEVER_TYPE_FALLBACK_FLOWING_INTO_UNSAFE,
NON_CONTIGUOUS_RANGE_ENDPOINTS,
NON_EXHAUSTIVE_OMITTED_PATTERNS, OUT_OF_SCOPE_MACRO_CALLS,
OVERLAPPING_RANGE_ENDPOINTS, PATTERNS_IN_FNS_WITHOUT_BODY,
PRIVATE_BOUNDS, PRIVATE_INTERFACES,
PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
PUB_USE_OF_PRIVATE_EXTERN_CRATE,
RECURSION_DEPTH_EXCEEDING_LIMIT, REDUNDANT_IMPORTS,
REDUNDANT_LIFETIMES, REFINING_IMPL_TRAIT_INTERNAL,
REFINING_IMPL_TRAIT_REACHABLE, RENAMED_AND_REMOVED_LINTS,
REPR_C_ENUMS_LARGER_THAN_INT,
RESOLVING_TO_ITEMS_SHADOWING_SUPERTRAIT_ITEMS,
RTSAN_NONBLOCKING_ASYNC,
RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES,
RUST_2021_INCOMPATIBLE_OR_PATTERNS,
RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
RUST_2021_PRELUDE_COLLISIONS,
RUST_2024_GUARDED_STRING_INCOMPATIBLE_SYNTAX,
RUST_2024_INCOMPATIBLE_PAT, RUST_2024_PRELUDE_COLLISIONS,
SELF_CONSTRUCTOR_FROM_OUTER_ITEM,
SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
SEMICOLON_IN_EXPRESSIONS_FROM_NON_LOCAL_MACROS,
SHADOWING_SUPERTRAIT_ITEMS, SINGLE_USE_LIFETIMES,
STABLE_FEATURES, TAIL_CALL_TRACK_CALLER, TAIL_EXPR_DROP_ORDER,
TEST_UNSTABLE_LINT, TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
TEXT_DIRECTION_CODEPOINT_IN_LITERAL, TRIVIAL_CASTS,
TRIVIAL_NUMERIC_CASTS, TYVAR_BEHIND_RAW_POINTER,
UNCONDITIONAL_PANIC, UNCONDITIONAL_RECURSION,
UNCOVERED_PARAM_IN_PROJECTION, UNEXPECTED_CFGS,
UNFULFILLED_LINT_EXPECTATIONS, UNINHABITED_STATIC,
UNKNOWN_CRATE_TYPES, UNKNOWN_DIAGNOSTIC_ATTRIBUTES,
UNKNOWN_LINTS, UNNAMEABLE_TEST_ITEMS, UNNAMEABLE_TYPES,
UNREACHABLE_CFG_SELECT_PREDICATES, UNREACHABLE_CODE,
UNREACHABLE_PATTERNS, UNSAFE_ATTR_OUTSIDE_UNSAFE,
UNSAFE_OP_IN_UNSAFE_FN, UNSTABLE_NAME_COLLISIONS,
UNSTABLE_SYNTAX_PRE_EXPANSION,
UNSUPPORTED_CALLING_CONVENTIONS, UNUSED_ASSIGNMENTS,
UNUSED_ASSOCIATED_TYPE_BOUNDS, UNUSED_ATTRIBUTES,
UNUSED_CRATE_DEPENDENCIES, UNUSED_EXTERN_CRATES,
UNUSED_FEATURES, UNUSED_IMPORTS, UNUSED_LABELS,
UNUSED_LIFETIMES, UNUSED_MACROS, UNUSED_MACRO_RULES,
UNUSED_MUT, UNUSED_QUALIFICATIONS, UNUSED_UNSAFE,
UNUSED_VARIABLES, UNUSED_VISIBILITIES, USELESS_DEPRECATED,
VARARGS_WITHOUT_PATTERN, WARNINGS]))vec![
17// tidy-alphabetical-start
18AARCH64_SOFTFLOAT_NEON,
19 ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
20 AMBIGUOUS_ASSOCIATED_ITEMS,
21 AMBIGUOUS_DERIVE_HELPERS,
22 AMBIGUOUS_GLOB_IMPORTED_TRAITS,
23 AMBIGUOUS_GLOB_IMPORTS,
24 AMBIGUOUS_GLOB_REEXPORTS,
25 AMBIGUOUS_IMPORT_VISIBILITIES,
26 AMBIGUOUS_PANIC_IMPORTS,
27 ARITHMETIC_OVERFLOW,
28 ASM_SUB_REGISTER,
29 BAD_ASM_STYLE,
30 BARE_TRAIT_OBJECTS,
31 BINDINGS_WITH_VARIANT_NAME,
32 BREAK_WITH_LABEL_AND_LOOP,
33 COHERENCE_LEAK_CHECK,
34 CONFLICTING_REPR_HINTS,
35 CONST_EVALUATABLE_UNCHECKED,
36 CONST_ITEM_MUTATION,
37 DEAD_CODE,
38 DEAD_CODE_PUB_IN_BINARY,
39 DEPENDENCY_ON_UNIT_NEVER_TYPE_FALLBACK,
40 DEPRECATED,
41 DEPRECATED_IN_FUTURE,
42 DEPRECATED_LLVM_INTRINSIC,
43 DEPRECATED_SAFE_2024,
44 DEPRECATED_WHERE_CLAUSE_LOCATION,
45 DUPLICATE_FEATURES,
46 DUPLICATE_MACRO_ATTRIBUTES,
47 DUPLICATE_TOOLS,
48 ELIDED_LIFETIMES_IN_PATHS,
49 EXPLICIT_BUILTIN_CFGS_IN_FLAGS,
50 EXPORTED_PRIVATE_DEPENDENCIES,
51 FFI_UNWIND_CALLS,
52 FLOAT_LITERAL_F32_FALLBACK,
53 FORBIDDEN_LINT_GROUPS,
54 FUNCTION_ITEM_REFERENCES,
55 HIDDEN_GLOB_REEXPORTS,
56 ILL_FORMED_ATTRIBUTE_INPUT,
57 INCOMPLETE_INCLUDE,
58 INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
59 INLINE_NO_SANITIZE,
60 INVALID_DOC_ATTRIBUTES,
61 INVALID_MACRO_EXPORT_ARGUMENTS,
62 INVALID_TYPE_PARAM_DEFAULT,
63 IRREFUTABLE_LET_PATTERNS,
64 LARGE_ASSIGNMENTS,
65 LATE_BOUND_LIFETIME_ARGUMENTS,
66 LEGACY_DERIVE_HELPERS,
67 LINKER_INFO,
68 LINKER_MESSAGES,
69 LONG_RUNNING_CONST_EVAL,
70 MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
71 MACRO_USE_EXTERN_CRATE,
72 MALFORMED_DIAGNOSTIC_ATTRIBUTES,
73 MALFORMED_DIAGNOSTIC_FILTERS,
74 MALFORMED_DIAGNOSTIC_FORMAT_LITERALS,
75 META_VARIABLE_MISUSE,
76 METHOD_CALL_ON_DIVERGING_INFER_VAR,
77 MISPLACED_DIAGNOSTIC_ATTRIBUTES,
78 MISSING_ABI,
79 MISSING_UNSAFE_ON_EXTERN,
80 MUST_NOT_SUSPEND,
81 NAMED_ARGUMENTS_USED_POSITIONALLY,
82 NEVER_TYPE_FALLBACK_FLOWING_INTO_UNSAFE,
83 NON_CONTIGUOUS_RANGE_ENDPOINTS,
84 NON_EXHAUSTIVE_OMITTED_PATTERNS,
85 OUT_OF_SCOPE_MACRO_CALLS,
86 OVERLAPPING_RANGE_ENDPOINTS,
87 PATTERNS_IN_FNS_WITHOUT_BODY,
88 PRIVATE_BOUNDS,
89 PRIVATE_INTERFACES,
90 PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
91 PUB_USE_OF_PRIVATE_EXTERN_CRATE,
92 RECURSION_DEPTH_EXCEEDING_LIMIT,
93 REDUNDANT_IMPORTS,
94 REDUNDANT_LIFETIMES,
95 REFINING_IMPL_TRAIT_INTERNAL,
96 REFINING_IMPL_TRAIT_REACHABLE,
97 RENAMED_AND_REMOVED_LINTS,
98 REPR_C_ENUMS_LARGER_THAN_INT,
99 RESOLVING_TO_ITEMS_SHADOWING_SUPERTRAIT_ITEMS,
100 RTSAN_NONBLOCKING_ASYNC,
101 RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES,
102 RUST_2021_INCOMPATIBLE_OR_PATTERNS,
103 RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
104 RUST_2021_PRELUDE_COLLISIONS,
105 RUST_2024_GUARDED_STRING_INCOMPATIBLE_SYNTAX,
106 RUST_2024_INCOMPATIBLE_PAT,
107 RUST_2024_PRELUDE_COLLISIONS,
108 SELF_CONSTRUCTOR_FROM_OUTER_ITEM,
109 SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
110 SEMICOLON_IN_EXPRESSIONS_FROM_NON_LOCAL_MACROS,
111 SHADOWING_SUPERTRAIT_ITEMS,
112 SINGLE_USE_LIFETIMES,
113 STABLE_FEATURES,
114 TAIL_CALL_TRACK_CALLER,
115 TAIL_EXPR_DROP_ORDER,
116 TEST_UNSTABLE_LINT,
117 TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
118 TEXT_DIRECTION_CODEPOINT_IN_LITERAL,
119 TRIVIAL_CASTS,
120 TRIVIAL_NUMERIC_CASTS,
121 TYVAR_BEHIND_RAW_POINTER,
122 UNCONDITIONAL_PANIC,
123 UNCONDITIONAL_RECURSION,
124 UNCOVERED_PARAM_IN_PROJECTION,
125 UNEXPECTED_CFGS,
126 UNFULFILLED_LINT_EXPECTATIONS,
127 UNINHABITED_STATIC,
128 UNKNOWN_CRATE_TYPES,
129 UNKNOWN_DIAGNOSTIC_ATTRIBUTES,
130 UNKNOWN_LINTS,
131 UNNAMEABLE_TEST_ITEMS,
132 UNNAMEABLE_TYPES,
133 UNREACHABLE_CFG_SELECT_PREDICATES,
134 UNREACHABLE_CODE,
135 UNREACHABLE_PATTERNS,
136 UNSAFE_ATTR_OUTSIDE_UNSAFE,
137 UNSAFE_OP_IN_UNSAFE_FN,
138 UNSTABLE_NAME_COLLISIONS,
139 UNSTABLE_SYNTAX_PRE_EXPANSION,
140 UNSUPPORTED_CALLING_CONVENTIONS,
141 UNUSED_ASSIGNMENTS,
142 UNUSED_ASSOCIATED_TYPE_BOUNDS,
143 UNUSED_ATTRIBUTES,
144 UNUSED_CRATE_DEPENDENCIES,
145 UNUSED_EXTERN_CRATES,
146 UNUSED_FEATURES,
147 UNUSED_IMPORTS,
148 UNUSED_LABELS,
149 UNUSED_LIFETIMES,
150 UNUSED_MACROS,
151 UNUSED_MACRO_RULES,
152 UNUSED_MUT,
153 UNUSED_QUALIFICATIONS,
154 UNUSED_UNSAFE,
155 UNUSED_VARIABLES,
156 UNUSED_VISIBILITIES,
157 USELESS_DEPRECATED,
158 VARARGS_WITHOUT_PATTERN,
159 WARNINGS,
160// tidy-alphabetical-end
161]162 }
163}
164165#[doc = r" The `forbidden_lint_groups` lint detects violations of"]
#[doc = r" `forbid` applied to a lint group. Due to a bug in the compiler,"]
#[doc =
r" these used to be overlooked entirely. They now generate a warning."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![forbid(warnings)]"]
#[doc = r" #![warn(bad_style)]"]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Recommended fix"]
#[doc = r""]
#[doc = r" If your crate is using `#![forbid(warnings)]`,"]
#[doc = r" we recommend that you change to `#![deny(warnings)]`."]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Due to a compiler bug, applying `forbid` to lint groups"]
#[doc = r" previously had no effect. The bug is now fixed but instead of"]
#[doc = r" enforcing `forbid` we issue this future-compatibility warning"]
#[doc = r" to avoid breaking existing crates."]
pub static FORBIDDEN_LINT_GROUPS: &crate::Lint =
&crate::Lint {
name: "FORBIDDEN_LINT_GROUPS",
default_level: crate::Warn,
desc: "applying forbid to lint-groups",
is_externally_loaded: false,
ignore_deny_warnings: true,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 81670,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
166/// The `forbidden_lint_groups` lint detects violations of
167 /// `forbid` applied to a lint group. Due to a bug in the compiler,
168 /// these used to be overlooked entirely. They now generate a warning.
169 ///
170 /// ### Example
171 ///
172 /// ```rust
173 /// #![forbid(warnings)]
174 /// #![warn(bad_style)]
175 ///
176 /// fn main() {}
177 /// ```
178 ///
179 /// {{produces}}
180 ///
181 /// ### Recommended fix
182 ///
183 /// If your crate is using `#![forbid(warnings)]`,
184 /// we recommend that you change to `#![deny(warnings)]`.
185 ///
186 /// ### Explanation
187 ///
188 /// Due to a compiler bug, applying `forbid` to lint groups
189 /// previously had no effect. The bug is now fixed but instead of
190 /// enforcing `forbid` we issue this future-compatibility warning
191 /// to avoid breaking existing crates.
192pub FORBIDDEN_LINT_GROUPS,
193 Warn,
194"applying forbid to lint-groups",
195 @future_incompatible = FutureIncompatibleInfo {
196 reason: fcw!(FutureReleaseError #81670),
197 report_in_deps: true,
198 };
199// We exempt `FORBIDDEN_LINT_GROUPS` from `-Dwarnings` because it specifically
200 // triggers in cases (like #80988) where you have `forbid(warnings)`,
201 // and so if we turned that into an error, it'd defeat the purpose of the
202 // future compatibility warning.
203ignore_deny_warnings
204}205206#[doc =
r" The `ill_formed_attribute_input` lint detects ill-formed attribute"]
#[doc = r" inputs that were previously accepted and used in practice."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r#" #[inline = "this is not valid"]"#]
#[doc = r" fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Previously, inputs for many built-in attributes weren't validated and"]
#[doc = r" nonsensical attribute inputs were accepted. After validation was"]
#[doc =
r" added, it was determined that some existing projects made use of these"]
#[doc =
r" invalid forms. This is a [future-incompatible] lint to transition this"]
#[doc =
r" to a hard error in the future. See [issue #57571] for more details."]
#[doc = r""]
#[doc =
r" Check the [attribute reference] for details on the valid inputs for"]
#[doc = r" attributes."]
#[doc = r""]
#[doc = r" [issue #57571]: https://github.com/rust-lang/rust/issues/57571"]
#[doc =
r" [attribute reference]: https://doc.rust-lang.org/nightly/reference/attributes.html"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static ILL_FORMED_ATTRIBUTE_INPUT: &crate::Lint =
&crate::Lint {
name: "ILL_FORMED_ATTRIBUTE_INPUT",
default_level: crate::Deny,
desc: "ill-formed attribute inputs that were previously accepted and used in practice",
is_externally_loaded: false,
crate_level_only: true,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 57571,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
207/// The `ill_formed_attribute_input` lint detects ill-formed attribute
208 /// inputs that were previously accepted and used in practice.
209 ///
210 /// ### Example
211 ///
212 /// ```rust,compile_fail
213 /// #[inline = "this is not valid"]
214 /// fn foo() {}
215 /// ```
216 ///
217 /// {{produces}}
218 ///
219 /// ### Explanation
220 ///
221 /// Previously, inputs for many built-in attributes weren't validated and
222 /// nonsensical attribute inputs were accepted. After validation was
223 /// added, it was determined that some existing projects made use of these
224 /// invalid forms. This is a [future-incompatible] lint to transition this
225 /// to a hard error in the future. See [issue #57571] for more details.
226 ///
227 /// Check the [attribute reference] for details on the valid inputs for
228 /// attributes.
229 ///
230 /// [issue #57571]: https://github.com/rust-lang/rust/issues/57571
231 /// [attribute reference]: https://doc.rust-lang.org/nightly/reference/attributes.html
232 /// [future-incompatible]: ../index.md#future-incompatible-lints
233pub ILL_FORMED_ATTRIBUTE_INPUT,
234 Deny,
235"ill-formed attribute inputs that were previously accepted and used in practice",
236 @future_incompatible = FutureIncompatibleInfo {
237 reason: fcw!(FutureReleaseError #57571),
238 report_in_deps: true,
239 };
240 crate_level_only
241}242243#[doc =
r" The `conflicting_repr_hints` lint detects [`repr` attributes] with"]
#[doc = r" conflicting hints."]
#[doc = r""]
#[doc =
r" [`repr` attributes]: https://doc.rust-lang.org/reference/type-layout.html#representations"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #[repr(u32, u64)]"]
#[doc = r" enum Foo {"]
#[doc = r" Variant1,"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The compiler incorrectly accepted these conflicting representations in"]
#[doc =
r" the past. This is a [future-incompatible] lint to transition this to a"]
#[doc = r" hard error in the future. See [issue #68585] for more details."]
#[doc = r""]
#[doc = r" To correct the issue, remove one of the conflicting hints."]
#[doc = r""]
#[doc = r" [issue #68585]: https://github.com/rust-lang/rust/issues/68585"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static CONFLICTING_REPR_HINTS: &crate::Lint =
&crate::Lint {
name: "CONFLICTING_REPR_HINTS",
default_level: crate::Deny,
desc: "conflicts between `#[repr(..)]` hints that were previously accepted and used in practice",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 68585,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
244/// The `conflicting_repr_hints` lint detects [`repr` attributes] with
245 /// conflicting hints.
246 ///
247 /// [`repr` attributes]: https://doc.rust-lang.org/reference/type-layout.html#representations
248 ///
249 /// ### Example
250 ///
251 /// ```rust,compile_fail
252 /// #[repr(u32, u64)]
253 /// enum Foo {
254 /// Variant1,
255 /// }
256 /// ```
257 ///
258 /// {{produces}}
259 ///
260 /// ### Explanation
261 ///
262 /// The compiler incorrectly accepted these conflicting representations in
263 /// the past. This is a [future-incompatible] lint to transition this to a
264 /// hard error in the future. See [issue #68585] for more details.
265 ///
266 /// To correct the issue, remove one of the conflicting hints.
267 ///
268 /// [issue #68585]: https://github.com/rust-lang/rust/issues/68585
269 /// [future-incompatible]: ../index.md#future-incompatible-lints
270pub CONFLICTING_REPR_HINTS,
271 Deny,
272"conflicts between `#[repr(..)]` hints that were previously accepted and used in practice",
273 @future_incompatible = FutureIncompatibleInfo {
274 reason: fcw!(FutureReleaseError #68585),
275 report_in_deps: true,
276 };
277}278279#[doc =
r" The `meta_variable_misuse` lint detects possible meta-variable misuse"]
#[doc = r" in macro definitions."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(meta_variable_misuse)]"]
#[doc = r""]
#[doc = r" macro_rules! foo {"]
#[doc = r" () => {};"]
#[doc =
r" ($( $i:ident = $($j:ident),+ );*) => { $( $( $i = $k; )+ )* };"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" foo!();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" There are quite a few different ways a [`macro_rules`] macro can be"]
#[doc =
r" improperly defined. Many of these errors were previously only detected"]
#[doc =
r" when the macro was expanded or not at all. This lint is an attempt to"]
#[doc = r" catch some of these problems when the macro is *defined*."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it may have false positives"#]
#[doc = r" and other issues. See [issue #61053] for more details."]
#[doc = r""]
#[doc =
r" [`macro_rules`]: https://doc.rust-lang.org/reference/macros-by-example.html"]
#[doc = r" [issue #61053]: https://github.com/rust-lang/rust/issues/61053"]
pub static META_VARIABLE_MISUSE: &crate::Lint =
&crate::Lint {
name: "META_VARIABLE_MISUSE",
default_level: crate::Allow,
desc: "possible meta-variable misuse at macro definition",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
280/// The `meta_variable_misuse` lint detects possible meta-variable misuse
281 /// in macro definitions.
282 ///
283 /// ### Example
284 ///
285 /// ```rust,compile_fail
286 /// #![deny(meta_variable_misuse)]
287 ///
288 /// macro_rules! foo {
289 /// () => {};
290 /// ($( $i:ident = $($j:ident),+ );*) => { $( $( $i = $k; )+ )* };
291 /// }
292 ///
293 /// fn main() {
294 /// foo!();
295 /// }
296 /// ```
297 ///
298 /// {{produces}}
299 ///
300 /// ### Explanation
301 ///
302 /// There are quite a few different ways a [`macro_rules`] macro can be
303 /// improperly defined. Many of these errors were previously only detected
304 /// when the macro was expanded or not at all. This lint is an attempt to
305 /// catch some of these problems when the macro is *defined*.
306 ///
307 /// This lint is "allow" by default because it may have false positives
308 /// and other issues. See [issue #61053] for more details.
309 ///
310 /// [`macro_rules`]: https://doc.rust-lang.org/reference/macros-by-example.html
311 /// [issue #61053]: https://github.com/rust-lang/rust/issues/61053
312pub META_VARIABLE_MISUSE,
313 Allow,
314"possible meta-variable misuse at macro definition"
315}316317#[doc = r" The `incomplete_include` lint detects the use of the [`include!`]"]
#[doc = r" macro with a file that contains more than one expression."]
#[doc = r""]
#[doc = r" [`include!`]: https://doc.rust-lang.org/std/macro.include.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs separate file)"]
#[doc = r" fn main() {"]
#[doc = r#" include!("foo.txt");"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" where the file `foo.txt` contains:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r#" println!("hi!");"#]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" produces:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" error: include macro expected single expression in source"]
#[doc = r" --> foo.txt:1:14"]
#[doc = r" |"]
#[doc = r#" 1 | println!("1");"#]
#[doc = r" | ^"]
#[doc = r" |"]
#[doc = r" = note: `#[deny(incomplete_include)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" The [`include!`] macro is currently only intended to be used to"]
#[doc =
r" include a single [expression] or multiple [items]. Historically it"]
#[doc =
r" would ignore any contents after the first expression, but that can be"]
#[doc =
r" confusing. In the example above, the `println!` expression ends just"]
#[doc =
r#" before the semicolon, making the semicolon "extra" information that is"#]
#[doc = r" ignored. Perhaps even more surprising, if the included file had"]
#[doc = r" multiple print statements, the subsequent ones would be ignored!"]
#[doc = r""]
#[doc =
r" One workaround is to place the contents in braces to create a [block"]
#[doc = r" expression]. Also consider alternatives, like using functions to"]
#[doc = r" encapsulate the expressions, or use [proc-macros]."]
#[doc = r""]
#[doc =
r" This is a lint instead of a hard error because existing projects were"]
#[doc =
r" found to hit this error. To be cautious, it is a lint for now. The"]
#[doc = r" future semantics of the `include!` macro are also uncertain, see"]
#[doc = r" [issue #35560]."]
#[doc = r""]
#[doc = r" [items]: https://doc.rust-lang.org/reference/items.html"]
#[doc =
r" [expression]: https://doc.rust-lang.org/reference/expressions.html"]
#[doc =
r" [block expression]: https://doc.rust-lang.org/reference/expressions/block-expr.html"]
#[doc =
r" [proc-macros]: https://doc.rust-lang.org/reference/procedural-macros.html"]
#[doc = r" [issue #35560]: https://github.com/rust-lang/rust/issues/35560"]
pub static INCOMPLETE_INCLUDE: &crate::Lint =
&crate::Lint {
name: "INCOMPLETE_INCLUDE",
default_level: crate::Deny,
desc: "trailing content in included file",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
318/// The `incomplete_include` lint detects the use of the [`include!`]
319 /// macro with a file that contains more than one expression.
320 ///
321 /// [`include!`]: https://doc.rust-lang.org/std/macro.include.html
322 ///
323 /// ### Example
324 ///
325 /// ```rust,ignore (needs separate file)
326 /// fn main() {
327 /// include!("foo.txt");
328 /// }
329 /// ```
330 ///
331 /// where the file `foo.txt` contains:
332 ///
333 /// ```text
334 /// println!("hi!");
335 /// ```
336 ///
337 /// produces:
338 ///
339 /// ```text
340 /// error: include macro expected single expression in source
341 /// --> foo.txt:1:14
342 /// |
343 /// 1 | println!("1");
344 /// | ^
345 /// |
346 /// = note: `#[deny(incomplete_include)]` on by default
347 /// ```
348 ///
349 /// ### Explanation
350 ///
351 /// The [`include!`] macro is currently only intended to be used to
352 /// include a single [expression] or multiple [items]. Historically it
353 /// would ignore any contents after the first expression, but that can be
354 /// confusing. In the example above, the `println!` expression ends just
355 /// before the semicolon, making the semicolon "extra" information that is
356 /// ignored. Perhaps even more surprising, if the included file had
357 /// multiple print statements, the subsequent ones would be ignored!
358 ///
359 /// One workaround is to place the contents in braces to create a [block
360 /// expression]. Also consider alternatives, like using functions to
361 /// encapsulate the expressions, or use [proc-macros].
362 ///
363 /// This is a lint instead of a hard error because existing projects were
364 /// found to hit this error. To be cautious, it is a lint for now. The
365 /// future semantics of the `include!` macro are also uncertain, see
366 /// [issue #35560].
367 ///
368 /// [items]: https://doc.rust-lang.org/reference/items.html
369 /// [expression]: https://doc.rust-lang.org/reference/expressions.html
370 /// [block expression]: https://doc.rust-lang.org/reference/expressions/block-expr.html
371 /// [proc-macros]: https://doc.rust-lang.org/reference/procedural-macros.html
372 /// [issue #35560]: https://github.com/rust-lang/rust/issues/35560
373pub INCOMPLETE_INCLUDE,
374 Deny,
375"trailing content in included file"
376}377378#[doc =
r" The `arithmetic_overflow` lint detects that an arithmetic operation"]
#[doc = r" will [overflow]."]
#[doc = r""]
#[doc =
r" [overflow]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#overflow"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" 1_i32 << 32;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is very likely a mistake to perform an arithmetic operation that"]
#[doc =
r" overflows its value. If the compiler is able to detect these kinds of"]
#[doc = r" overflows at compile-time, it will trigger this lint. Consider"]
#[doc =
r" adjusting the expression to avoid overflow, or use a data type that"]
#[doc = r" will not overflow."]
pub static ARITHMETIC_OVERFLOW: &crate::Lint =
&crate::Lint {
name: "ARITHMETIC_OVERFLOW",
default_level: crate::Deny,
desc: "arithmetic operation overflows",
is_externally_loaded: false,
eval_always: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
379/// The `arithmetic_overflow` lint detects that an arithmetic operation
380 /// will [overflow].
381 ///
382 /// [overflow]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#overflow
383 ///
384 /// ### Example
385 ///
386 /// ```rust,compile_fail
387 /// 1_i32 << 32;
388 /// ```
389 ///
390 /// {{produces}}
391 ///
392 /// ### Explanation
393 ///
394 /// It is very likely a mistake to perform an arithmetic operation that
395 /// overflows its value. If the compiler is able to detect these kinds of
396 /// overflows at compile-time, it will trigger this lint. Consider
397 /// adjusting the expression to avoid overflow, or use a data type that
398 /// will not overflow.
399pub ARITHMETIC_OVERFLOW,
400 Deny,
401"arithmetic operation overflows",
402 @eval_always = true
403}404405#[doc =
r" The `unconditional_panic` lint detects an operation that will cause a"]
#[doc = r" panic at runtime."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![allow(unused)]"]
#[doc = r" let x = 1 / 0;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This lint detects code that is very likely incorrect because it will"]
#[doc = r" always panic, such as division by zero and out-of-bounds array"]
#[doc =
r" accesses. Consider adjusting your code if this is a bug, or using the"]
#[doc =
r" `panic!` or `unreachable!` macro instead in case the panic is intended."]
pub static UNCONDITIONAL_PANIC: &crate::Lint =
&crate::Lint {
name: "UNCONDITIONAL_PANIC",
default_level: crate::Deny,
desc: "operation will cause a panic at runtime",
is_externally_loaded: false,
eval_always: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
406/// The `unconditional_panic` lint detects an operation that will cause a
407 /// panic at runtime.
408 ///
409 /// ### Example
410 ///
411 /// ```rust,compile_fail
412 /// # #![allow(unused)]
413 /// let x = 1 / 0;
414 /// ```
415 ///
416 /// {{produces}}
417 ///
418 /// ### Explanation
419 ///
420 /// This lint detects code that is very likely incorrect because it will
421 /// always panic, such as division by zero and out-of-bounds array
422 /// accesses. Consider adjusting your code if this is a bug, or using the
423 /// `panic!` or `unreachable!` macro instead in case the panic is intended.
424pub UNCONDITIONAL_PANIC,
425 Deny,
426"operation will cause a panic at runtime",
427 @eval_always = true
428}429430#[doc = r" The `unused_imports` lint detects imports that are never used."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" use std::collections::HashMap;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused imports may signal a mistake or unfinished code, and clutter"]
#[doc =
r" the code, and should be removed. If you intended to re-export the item"]
#[doc =
r" to make it available outside of the module, add a visibility modifier"]
#[doc = r" like `pub`."]
pub static UNUSED_IMPORTS: &crate::Lint =
&crate::Lint {
name: "UNUSED_IMPORTS",
default_level: crate::Warn,
desc: "imports that are never used",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
431/// The `unused_imports` lint detects imports that are never used.
432 ///
433 /// ### Example
434 ///
435 /// ```rust
436 /// use std::collections::HashMap;
437 /// ```
438 ///
439 /// {{produces}}
440 ///
441 /// ### Explanation
442 ///
443 /// Unused imports may signal a mistake or unfinished code, and clutter
444 /// the code, and should be removed. If you intended to re-export the item
445 /// to make it available outside of the module, add a visibility modifier
446 /// like `pub`.
447pub UNUSED_IMPORTS,
448 Warn,
449"imports that are never used"
450}451452#[doc =
r" The `redundant_imports` lint detects imports that are redundant due to being"]
#[doc =
r" imported already; either through a previous import, or being present in"]
#[doc = r" the prelude."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(redundant_imports)]"]
#[doc = r" use std::option::Option::None;"]
#[doc = r" fn foo() -> Option<i32> { None }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Redundant imports are unnecessary and can be removed to simplify code."]
#[doc =
r" If you intended to re-export the item to make it available outside of the"]
#[doc = r" module, add a visibility modifier like `pub`."]
pub static REDUNDANT_IMPORTS: &crate::Lint =
&crate::Lint {
name: "REDUNDANT_IMPORTS",
default_level: crate::Allow,
desc: "imports that are redundant due to being imported already",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
453/// The `redundant_imports` lint detects imports that are redundant due to being
454 /// imported already; either through a previous import, or being present in
455 /// the prelude.
456 ///
457 /// ### Example
458 ///
459 /// ```rust,compile_fail
460 /// #![deny(redundant_imports)]
461 /// use std::option::Option::None;
462 /// fn foo() -> Option<i32> { None }
463 /// ```
464 ///
465 /// {{produces}}
466 ///
467 /// ### Explanation
468 ///
469 /// Redundant imports are unnecessary and can be removed to simplify code.
470 /// If you intended to re-export the item to make it available outside of the
471 /// module, add a visibility modifier like `pub`.
472pub REDUNDANT_IMPORTS,
473 Allow,
474"imports that are redundant due to being imported already"
475}476477#[doc =
r" The `must_not_suspend` lint guards against values that shouldn't be held across suspend points"]
#[doc = r" (`.await`)"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![feature(must_not_suspend)]"]
#[doc = r" #![warn(must_not_suspend)]"]
#[doc = r""]
#[doc = r" #[must_not_suspend]"]
#[doc = r" struct SyncThing {}"]
#[doc = r""]
#[doc = r" async fn yield_now() {}"]
#[doc = r""]
#[doc = r" pub async fn uhoh() {"]
#[doc = r" let guard = SyncThing {};"]
#[doc = r" yield_now().await;"]
#[doc = r" let _guard = guard;"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The `must_not_suspend` lint detects values that are marked with the `#[must_not_suspend]`"]
#[doc =
r#" attribute being held across suspend points. A "suspend" point is usually a `.await` in an async"#]
#[doc = r" function."]
#[doc = r""]
#[doc =
r" This attribute can be used to mark values that are semantically incorrect across suspends"]
#[doc =
r" (like certain types of timers), values that have async alternatives, and values that"]
#[doc =
r" regularly cause problems with the `Send`-ness of async fn's returned futures (like"]
#[doc = r" `MutexGuard`'s)"]
#[doc = r""]
pub static MUST_NOT_SUSPEND: &crate::Lint =
&crate::Lint {
name: "MUST_NOT_SUSPEND",
default_level: crate::Allow,
desc: "use of a `#[must_not_suspend]` value across a yield point",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::must_not_suspend),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
478/// The `must_not_suspend` lint guards against values that shouldn't be held across suspend points
479 /// (`.await`)
480 ///
481 /// ### Example
482 ///
483 /// ```rust
484 /// #![feature(must_not_suspend)]
485 /// #![warn(must_not_suspend)]
486 ///
487 /// #[must_not_suspend]
488 /// struct SyncThing {}
489 ///
490 /// async fn yield_now() {}
491 ///
492 /// pub async fn uhoh() {
493 /// let guard = SyncThing {};
494 /// yield_now().await;
495 /// let _guard = guard;
496 /// }
497 /// ```
498 ///
499 /// {{produces}}
500 ///
501 /// ### Explanation
502 ///
503 /// The `must_not_suspend` lint detects values that are marked with the `#[must_not_suspend]`
504 /// attribute being held across suspend points. A "suspend" point is usually a `.await` in an async
505 /// function.
506 ///
507 /// This attribute can be used to mark values that are semantically incorrect across suspends
508 /// (like certain types of timers), values that have async alternatives, and values that
509 /// regularly cause problems with the `Send`-ness of async fn's returned futures (like
510 /// `MutexGuard`'s)
511 ///
512pub MUST_NOT_SUSPEND,
513 Allow,
514"use of a `#[must_not_suspend]` value across a yield point",
515 @feature_gate = must_not_suspend;
516}517518#[doc =
r" The `unused_extern_crates` lint guards against `extern crate` items"]
#[doc = r" that are never used."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(unused_extern_crates)]"]
#[doc = r" #![deny(warnings)]"]
#[doc = r" extern crate proc_macro;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" `extern crate` items that are unused have no effect and should be"]
#[doc =
r" removed. Note that there are some cases where specifying an `extern"]
#[doc =
r" crate` is desired for the side effect of ensuring the given crate is"]
#[doc =
r" linked, even though it is not otherwise directly referenced. The lint"]
#[doc = r" can be silenced by aliasing the crate to an underscore, such as"]
#[doc =
r" `extern crate foo as _`. Also note that it is no longer idiomatic to"]
#[doc =
r" use `extern crate` in the [2018 edition], as extern crates are now"]
#[doc = r" automatically added in scope."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it can be noisy, and produce"#]
#[doc =
r" false-positives. If a dependency is being removed from a project, it"]
#[doc = r" is recommended to remove it from the build configuration (such as"]
#[doc = r" `Cargo.toml`) to ensure stale build entries aren't left behind."]
#[doc = r""]
#[doc =
r" [2018 edition]: https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html#no-more-extern-crate"]
pub static UNUSED_EXTERN_CRATES: &crate::Lint =
&crate::Lint {
name: "UNUSED_EXTERN_CRATES",
default_level: crate::Allow,
desc: "extern crates that are never used",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
519/// The `unused_extern_crates` lint guards against `extern crate` items
520 /// that are never used.
521 ///
522 /// ### Example
523 ///
524 /// ```rust,compile_fail
525 /// #![deny(unused_extern_crates)]
526 /// #![deny(warnings)]
527 /// extern crate proc_macro;
528 /// ```
529 ///
530 /// {{produces}}
531 ///
532 /// ### Explanation
533 ///
534 /// `extern crate` items that are unused have no effect and should be
535 /// removed. Note that there are some cases where specifying an `extern
536 /// crate` is desired for the side effect of ensuring the given crate is
537 /// linked, even though it is not otherwise directly referenced. The lint
538 /// can be silenced by aliasing the crate to an underscore, such as
539 /// `extern crate foo as _`. Also note that it is no longer idiomatic to
540 /// use `extern crate` in the [2018 edition], as extern crates are now
541 /// automatically added in scope.
542 ///
543 /// This lint is "allow" by default because it can be noisy, and produce
544 /// false-positives. If a dependency is being removed from a project, it
545 /// is recommended to remove it from the build configuration (such as
546 /// `Cargo.toml`) to ensure stale build entries aren't left behind.
547 ///
548 /// [2018 edition]: https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html#no-more-extern-crate
549pub UNUSED_EXTERN_CRATES,
550 Allow,
551"extern crates that are never used"
552}553554#[doc =
r" The `unused_crate_dependencies` lint detects crate dependencies that"]
#[doc = r" are never used."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs extern crate)"]
#[doc = r" #![deny(unused_crate_dependencies)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" error: extern crate `regex` is unused in crate `lint_example`"]
#[doc = r" |"]
#[doc =
r" = help: remove the dependency or add `use regex as _;` to the crate root"]
#[doc = r" note: the lint level is defined here"]
#[doc = r" --> src/lib.rs:1:9"]
#[doc = r" |"]
#[doc = r" 1 | #![deny(unused_crate_dependencies)]"]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" After removing the code that uses a dependency, this usually also"]
#[doc = r" requires removing the dependency from the build configuration."]
#[doc =
r" However, sometimes that step can be missed, which leads to time wasted"]
#[doc = r" building dependencies that are no longer used. This lint can be"]
#[doc =
r" enabled to detect dependencies that are never used (more specifically,"]
#[doc =
r" any dependency passed with the `--extern` command-line flag that is"]
#[doc =
r" never referenced via [`use`], [`extern crate`], or in any [path])."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it can provide false positives"#]
#[doc =
r" depending on how the build system is configured. For example, when"]
#[doc = r#" using Cargo, a "package" consists of multiple crates (such as a"#]
#[doc = r" library and a binary), but the dependencies are defined for the"]
#[doc =
r" package as a whole. If there is a dependency that is only used in the"]
#[doc =
r" binary, but not the library, then the lint will be incorrectly issued"]
#[doc = r" in the library."]
#[doc = r""]
#[doc = r" [path]: https://doc.rust-lang.org/reference/paths.html"]
#[doc =
r" [`use`]: https://doc.rust-lang.org/reference/items/use-declarations.html"]
#[doc =
r" [`extern crate`]: https://doc.rust-lang.org/reference/items/extern-crates.html"]
pub static UNUSED_CRATE_DEPENDENCIES: &crate::Lint =
&crate::Lint {
name: "UNUSED_CRATE_DEPENDENCIES",
default_level: crate::Allow,
desc: "crate dependencies that are never used",
is_externally_loaded: false,
crate_level_only: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
555/// The `unused_crate_dependencies` lint detects crate dependencies that
556 /// are never used.
557 ///
558 /// ### Example
559 ///
560 /// ```rust,ignore (needs extern crate)
561 /// #![deny(unused_crate_dependencies)]
562 /// ```
563 ///
564 /// This will produce:
565 ///
566 /// ```text
567 /// error: extern crate `regex` is unused in crate `lint_example`
568 /// |
569 /// = help: remove the dependency or add `use regex as _;` to the crate root
570 /// note: the lint level is defined here
571 /// --> src/lib.rs:1:9
572 /// |
573 /// 1 | #![deny(unused_crate_dependencies)]
574 /// | ^^^^^^^^^^^^^^^^^^^^^^^^^
575 /// ```
576 ///
577 /// ### Explanation
578 ///
579 /// After removing the code that uses a dependency, this usually also
580 /// requires removing the dependency from the build configuration.
581 /// However, sometimes that step can be missed, which leads to time wasted
582 /// building dependencies that are no longer used. This lint can be
583 /// enabled to detect dependencies that are never used (more specifically,
584 /// any dependency passed with the `--extern` command-line flag that is
585 /// never referenced via [`use`], [`extern crate`], or in any [path]).
586 ///
587 /// This lint is "allow" by default because it can provide false positives
588 /// depending on how the build system is configured. For example, when
589 /// using Cargo, a "package" consists of multiple crates (such as a
590 /// library and a binary), but the dependencies are defined for the
591 /// package as a whole. If there is a dependency that is only used in the
592 /// binary, but not the library, then the lint will be incorrectly issued
593 /// in the library.
594 ///
595 /// [path]: https://doc.rust-lang.org/reference/paths.html
596 /// [`use`]: https://doc.rust-lang.org/reference/items/use-declarations.html
597 /// [`extern crate`]: https://doc.rust-lang.org/reference/items/extern-crates.html
598pub UNUSED_CRATE_DEPENDENCIES,
599 Allow,
600"crate dependencies that are never used",
601 crate_level_only
602}603604#[doc = r" The `unused_qualifications` lint detects unnecessarily qualified"]
#[doc = r" names."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(unused_qualifications)]"]
#[doc = r" mod foo {"]
#[doc = r" pub fn bar() {}"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" use foo::bar;"]
#[doc = r" foo::bar();"]
#[doc = r" bar();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" If an item from another module is already brought into scope, then"]
#[doc = r" there is no need to qualify it in this case. You can call `bar()`"]
#[doc = r" directly, without the `foo::`."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it is somewhat pedantic, and"#]
#[doc =
r" doesn't indicate an actual problem, but rather a stylistic choice, and"]
#[doc = r" can be noisy when refactoring or moving around code."]
pub static UNUSED_QUALIFICATIONS: &crate::Lint =
&crate::Lint {
name: "UNUSED_QUALIFICATIONS",
default_level: crate::Allow,
desc: "detects unnecessarily qualified names",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
605/// The `unused_qualifications` lint detects unnecessarily qualified
606 /// names.
607 ///
608 /// ### Example
609 ///
610 /// ```rust,compile_fail
611 /// #![deny(unused_qualifications)]
612 /// mod foo {
613 /// pub fn bar() {}
614 /// }
615 ///
616 /// fn main() {
617 /// use foo::bar;
618 /// foo::bar();
619 /// bar();
620 /// }
621 /// ```
622 ///
623 /// {{produces}}
624 ///
625 /// ### Explanation
626 ///
627 /// If an item from another module is already brought into scope, then
628 /// there is no need to qualify it in this case. You can call `bar()`
629 /// directly, without the `foo::`.
630 ///
631 /// This lint is "allow" by default because it is somewhat pedantic, and
632 /// doesn't indicate an actual problem, but rather a stylistic choice, and
633 /// can be noisy when refactoring or moving around code.
634pub UNUSED_QUALIFICATIONS,
635 Allow,
636"detects unnecessarily qualified names"
637}638639#[doc = r" The `unknown_lints` lint detects unrecognized lint attributes."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![allow(not_a_real_lint)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is usually a mistake to specify a lint that does not exist. Check"]
#[doc =
r" the spelling, and check the lint listing for the correct name. Also"]
#[doc =
r" consider if you are using an old version of the compiler, and the lint"]
#[doc = r" is only available in a newer version."]
pub static UNKNOWN_LINTS: &crate::Lint =
&crate::Lint {
name: "UNKNOWN_LINTS",
default_level: crate::Warn,
desc: "unrecognized lint attribute",
is_externally_loaded: false,
eval_always: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
640/// The `unknown_lints` lint detects unrecognized lint attributes.
641 ///
642 /// ### Example
643 ///
644 /// ```rust
645 /// #![allow(not_a_real_lint)]
646 /// ```
647 ///
648 /// {{produces}}
649 ///
650 /// ### Explanation
651 ///
652 /// It is usually a mistake to specify a lint that does not exist. Check
653 /// the spelling, and check the lint listing for the correct name. Also
654 /// consider if you are using an old version of the compiler, and the lint
655 /// is only available in a newer version.
656pub UNKNOWN_LINTS,
657 Warn,
658"unrecognized lint attribute",
659 @eval_always = true
660}661662#[doc =
r" The `unfulfilled_lint_expectations` lint detects when a lint expectation is"]
#[doc = r" unfulfilled."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #[expect(unused_variables)]"]
#[doc = r" let x = 10;"]
#[doc = r#" println!("{}", x);"#]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The `#[expect]` attribute can be used to create a lint expectation. The"]
#[doc =
r" expectation is fulfilled, if a `#[warn]` attribute at the same location"]
#[doc =
r" would result in a lint emission. If the expectation is unfulfilled,"]
#[doc =
r" because no lint was emitted, this lint will be emitted on the attribute."]
#[doc = r""]
pub static UNFULFILLED_LINT_EXPECTATIONS: &crate::Lint =
&crate::Lint {
name: "UNFULFILLED_LINT_EXPECTATIONS",
default_level: crate::Warn,
desc: "unfulfilled lint expectation",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
663/// The `unfulfilled_lint_expectations` lint detects when a lint expectation is
664 /// unfulfilled.
665 ///
666 /// ### Example
667 ///
668 /// ```rust
669 /// #[expect(unused_variables)]
670 /// let x = 10;
671 /// println!("{}", x);
672 /// ```
673 ///
674 /// {{produces}}
675 ///
676 /// ### Explanation
677 ///
678 /// The `#[expect]` attribute can be used to create a lint expectation. The
679 /// expectation is fulfilled, if a `#[warn]` attribute at the same location
680 /// would result in a lint emission. If the expectation is unfulfilled,
681 /// because no lint was emitted, this lint will be emitted on the attribute.
682 ///
683pub UNFULFILLED_LINT_EXPECTATIONS,
684 Warn,
685"unfulfilled lint expectation"
686}687688#[doc =
r" The `unused_variables` lint detects variables which are not used in"]
#[doc = r" any way."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" let x = 5;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused variables may signal a mistake or unfinished code. To silence"]
#[doc =
r" the warning for the individual variable, prefix it with an underscore"]
#[doc = r" such as `_x`."]
pub static UNUSED_VARIABLES: &crate::Lint =
&crate::Lint {
name: "UNUSED_VARIABLES",
default_level: crate::Warn,
desc: "detect variables which are not used in any way",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
689/// The `unused_variables` lint detects variables which are not used in
690 /// any way.
691 ///
692 /// ### Example
693 ///
694 /// ```rust
695 /// let x = 5;
696 /// ```
697 ///
698 /// {{produces}}
699 ///
700 /// ### Explanation
701 ///
702 /// Unused variables may signal a mistake or unfinished code. To silence
703 /// the warning for the individual variable, prefix it with an underscore
704 /// such as `_x`.
705pub UNUSED_VARIABLES,
706 Warn,
707"detect variables which are not used in any way"
708}709710#[doc =
r" The `unused_visibilities` lint detects visibility qualifiers (like `pub`)"]
#[doc = r" on a `const _` item."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" pub const _: () = {};"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" These qualifiers have no effect, as `const _` items are unnameable."]
pub static UNUSED_VISIBILITIES: &crate::Lint =
&crate::Lint {
name: "UNUSED_VISIBILITIES",
default_level: crate::Warn,
desc: "detect visibility qualifiers on `const _` items",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
711/// The `unused_visibilities` lint detects visibility qualifiers (like `pub`)
712 /// on a `const _` item.
713 ///
714 /// ### Example
715 ///
716 /// ```rust
717 /// pub const _: () = {};
718 /// ```
719 ///
720 /// {{produces}}
721 ///
722 /// ### Explanation
723 ///
724 /// These qualifiers have no effect, as `const _` items are unnameable.
725pub UNUSED_VISIBILITIES,
726 Warn,
727"detect visibility qualifiers on `const _` items"
728}729730#[doc =
r" The `unused_assignments` lint detects assignments that will never be read."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" let mut x = 5;"]
#[doc = r" x = 6;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused assignments may signal a mistake or unfinished code. If the"]
#[doc =
r" variable is never used after being assigned, then the assignment can"]
#[doc =
r" be removed. Variables with an underscore prefix such as `_x` will not"]
#[doc = r" trigger this lint."]
pub static UNUSED_ASSIGNMENTS: &crate::Lint =
&crate::Lint {
name: "UNUSED_ASSIGNMENTS",
default_level: crate::Warn,
desc: "detect assignments that will never be read",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
731/// The `unused_assignments` lint detects assignments that will never be read.
732 ///
733 /// ### Example
734 ///
735 /// ```rust
736 /// let mut x = 5;
737 /// x = 6;
738 /// ```
739 ///
740 /// {{produces}}
741 ///
742 /// ### Explanation
743 ///
744 /// Unused assignments may signal a mistake or unfinished code. If the
745 /// variable is never used after being assigned, then the assignment can
746 /// be removed. Variables with an underscore prefix such as `_x` will not
747 /// trigger this lint.
748pub UNUSED_ASSIGNMENTS,
749 Warn,
750"detect assignments that will never be read"
751}752753#[doc = r" The `dead_code` lint detects unused, unexported items."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Dead code may signal a mistake or unfinished code. To silence the"]
#[doc =
r" warning for individual items, prefix the name with an underscore such"]
#[doc =
r" as `_foo`. If it was intended to expose the item outside of the crate,"]
#[doc = r" consider adding a visibility modifier like `pub`."]
#[doc = r""]
#[doc = r" To preserve the numbering of tuple structs with unused fields,"]
#[doc = r" change the unused fields to have unit type or use"]
#[doc = r" `PhantomData`."]
#[doc = r""]
#[doc = r" Otherwise consider removing the unused code."]
#[doc = r""]
#[doc = r" ### Limitations"]
#[doc = r""]
#[doc = r" Removing fields that are only used for side-effects and never"]
#[doc = r" read will result in behavioral changes. Examples of this"]
#[doc = r" include:"]
#[doc = r""]
#[doc = r" - If a field's value performs an action when it is dropped."]
#[doc = r" - If a field's type does not implement an auto trait"]
#[doc = r" (e.g. `Send`, `Sync`, `Unpin`)."]
#[doc = r""]
#[doc = r" For side-effects from dropping field values, this lint should"]
#[doc = r" be allowed on those fields. For side-effects from containing"]
#[doc = r" field types, `PhantomData` should be used."]
pub static DEAD_CODE: &crate::Lint =
&crate::Lint {
name: "DEAD_CODE",
default_level: crate::Warn,
desc: "detect unused, unexported items",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
754/// The `dead_code` lint detects unused, unexported items.
755 ///
756 /// ### Example
757 ///
758 /// ```rust
759 /// fn foo() {}
760 /// ```
761 ///
762 /// {{produces}}
763 ///
764 /// ### Explanation
765 ///
766 /// Dead code may signal a mistake or unfinished code. To silence the
767 /// warning for individual items, prefix the name with an underscore such
768 /// as `_foo`. If it was intended to expose the item outside of the crate,
769 /// consider adding a visibility modifier like `pub`.
770 ///
771 /// To preserve the numbering of tuple structs with unused fields,
772 /// change the unused fields to have unit type or use
773 /// `PhantomData`.
774 ///
775 /// Otherwise consider removing the unused code.
776 ///
777 /// ### Limitations
778 ///
779 /// Removing fields that are only used for side-effects and never
780 /// read will result in behavioral changes. Examples of this
781 /// include:
782 ///
783 /// - If a field's value performs an action when it is dropped.
784 /// - If a field's type does not implement an auto trait
785 /// (e.g. `Send`, `Sync`, `Unpin`).
786 ///
787 /// For side-effects from dropping field values, this lint should
788 /// be allowed on those fields. For side-effects from containing
789 /// field types, `PhantomData` should be used.
790pub DEAD_CODE,
791 Warn,
792"detect unused, unexported items"
793}794795#[doc = r" The `dead_code_pub_in_binary` lint detects unused `pub` items in"]
#[doc = r" executable crates."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![deny(dead_code_pub_in_binary)]"]
#[doc = r""]
#[doc = r" pub fn unused_pub_fn() {}"]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In executable crates, `pub` items are often implementation details"]
#[doc =
r" rather than part of an external API. This lint helps find those items"]
#[doc = r" when they are never used."]
#[doc = r""]
#[doc =
r" This lint only applies to executable crates. In library crates, public"]
#[doc =
r" items are considered part of the crate's API and are not reported by"]
#[doc = r" this lint."]
pub static DEAD_CODE_PUB_IN_BINARY: &crate::Lint =
&crate::Lint {
name: "DEAD_CODE_PUB_IN_BINARY",
default_level: crate::Allow,
desc: "detect public items in executable crates that are never used",
is_externally_loaded: false,
crate_level_only: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
796/// The `dead_code_pub_in_binary` lint detects unused `pub` items in
797 /// executable crates.
798 ///
799 /// ### Example
800 ///
801 /// ```rust
802 /// #![deny(dead_code_pub_in_binary)]
803 ///
804 /// pub fn unused_pub_fn() {}
805 ///
806 /// fn main() {}
807 /// ```
808 ///
809 /// {{produces}}
810 ///
811 /// ### Explanation
812 ///
813 /// In executable crates, `pub` items are often implementation details
814 /// rather than part of an external API. This lint helps find those items
815 /// when they are never used.
816 ///
817 /// This lint only applies to executable crates. In library crates, public
818 /// items are considered part of the crate's API and are not reported by
819 /// this lint.
820pub DEAD_CODE_PUB_IN_BINARY,
821 Allow,
822"detect public items in executable crates that are never used",
823 crate_level_only
824}825826#[doc =
r" The `unused_attributes` lint detects attributes that were not used by"]
#[doc = r" the compiler."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![ignore]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused [attributes] may indicate the attribute is placed in the wrong"]
#[doc =
r" position. Consider removing it, or placing it in the correct position."]
#[doc =
r" Also consider if you intended to use an _inner attribute_ (with a `!`"]
#[doc =
r" such as `#![allow(unused)]`) which applies to the item the attribute"]
#[doc = r" is within, or an _outer attribute_ (without a `!` such as"]
#[doc = r" `#[allow(unused)]`) which applies to the item *following* the"]
#[doc = r" attribute."]
#[doc = r""]
#[doc = r" [attributes]: https://doc.rust-lang.org/reference/attributes.html"]
pub static UNUSED_ATTRIBUTES: &crate::Lint =
&crate::Lint {
name: "UNUSED_ATTRIBUTES",
default_level: crate::Warn,
desc: "detects attributes that were not used by the compiler",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
827/// The `unused_attributes` lint detects attributes that were not used by
828 /// the compiler.
829 ///
830 /// ### Example
831 ///
832 /// ```rust
833 /// #![ignore]
834 /// ```
835 ///
836 /// {{produces}}
837 ///
838 /// ### Explanation
839 ///
840 /// Unused [attributes] may indicate the attribute is placed in the wrong
841 /// position. Consider removing it, or placing it in the correct position.
842 /// Also consider if you intended to use an _inner attribute_ (with a `!`
843 /// such as `#![allow(unused)]`) which applies to the item the attribute
844 /// is within, or an _outer attribute_ (without a `!` such as
845 /// `#[allow(unused)]`) which applies to the item *following* the
846 /// attribute.
847 ///
848 /// [attributes]: https://doc.rust-lang.org/reference/attributes.html
849pub UNUSED_ATTRIBUTES,
850 Warn,
851"detects attributes that were not used by the compiler"
852}853854#[doc = r" The `unreachable_code` lint detects unreachable code paths."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,no_run"]
#[doc = r#" panic!("we never go past here!");"#]
#[doc = r""]
#[doc = r" let x = 5;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unreachable code may signal a mistake or unfinished code. If the code"]
#[doc = r" is no longer in use, consider removing it."]
pub static UNREACHABLE_CODE: &crate::Lint =
&crate::Lint {
name: "UNREACHABLE_CODE",
default_level: crate::Warn,
desc: "detects unreachable code paths",
is_externally_loaded: false,
report_in_external_macro: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
855/// The `unreachable_code` lint detects unreachable code paths.
856 ///
857 /// ### Example
858 ///
859 /// ```rust,no_run
860 /// panic!("we never go past here!");
861 ///
862 /// let x = 5;
863 /// ```
864 ///
865 /// {{produces}}
866 ///
867 /// ### Explanation
868 ///
869 /// Unreachable code may signal a mistake or unfinished code. If the code
870 /// is no longer in use, consider removing it.
871pub UNREACHABLE_CODE,
872 Warn,
873"detects unreachable code paths",
874 report_in_external_macro
875}876877#[doc = r" The `unreachable_patterns` lint detects unreachable patterns."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" let x = 5;"]
#[doc = r" match x {"]
#[doc = r" y => (),"]
#[doc = r" 5 => (),"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This usually indicates a mistake in how the patterns are specified or"]
#[doc =
r" ordered. In this example, the `y` pattern will always match, so the"]
#[doc =
r" five is impossible to reach. Remember, match arms match in order, you"]
#[doc = r" probably wanted to put the `5` case above the `y` case."]
pub static UNREACHABLE_PATTERNS: &crate::Lint =
&crate::Lint {
name: "UNREACHABLE_PATTERNS",
default_level: crate::Warn,
desc: "detects unreachable patterns",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
878/// The `unreachable_patterns` lint detects unreachable patterns.
879 ///
880 /// ### Example
881 ///
882 /// ```rust
883 /// let x = 5;
884 /// match x {
885 /// y => (),
886 /// 5 => (),
887 /// }
888 /// ```
889 ///
890 /// {{produces}}
891 ///
892 /// ### Explanation
893 ///
894 /// This usually indicates a mistake in how the patterns are specified or
895 /// ordered. In this example, the `y` pattern will always match, so the
896 /// five is impossible to reach. Remember, match arms match in order, you
897 /// probably wanted to put the `5` case above the `y` case.
898pub UNREACHABLE_PATTERNS,
899 Warn,
900"detects unreachable patterns"
901}902903#[doc =
r" The `unreachable_cfg_select_predicates` lint detects unreachable configuration"]
#[doc = r" predicates in the `cfg_select!` macro."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" cfg_select! {"]
#[doc = r" _ => (),"]
#[doc = r" windows => (),"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This usually indicates a mistake in how the predicates are specified or"]
#[doc =
r" ordered. In this example, the `_` predicate will always match, so the"]
#[doc =
r" `windows` is impossible to reach. Remember, arms match in order, you"]
#[doc = r" probably wanted to put the `windows` case above the `_` case."]
pub static UNREACHABLE_CFG_SELECT_PREDICATES: &crate::Lint =
&crate::Lint {
name: "UNREACHABLE_CFG_SELECT_PREDICATES",
default_level: crate::Warn,
desc: "detects unreachable configuration predicates in the cfg_select macro",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
904/// The `unreachable_cfg_select_predicates` lint detects unreachable configuration
905 /// predicates in the `cfg_select!` macro.
906 ///
907 /// ### Example
908 ///
909 /// ```rust
910 /// cfg_select! {
911 /// _ => (),
912 /// windows => (),
913 /// }
914 /// ```
915 ///
916 /// {{produces}}
917 ///
918 /// ### Explanation
919 ///
920 /// This usually indicates a mistake in how the predicates are specified or
921 /// ordered. In this example, the `_` predicate will always match, so the
922 /// `windows` is impossible to reach. Remember, arms match in order, you
923 /// probably wanted to put the `windows` case above the `_` case.
924pub UNREACHABLE_CFG_SELECT_PREDICATES,
925 Warn,
926"detects unreachable configuration predicates in the cfg_select macro",
927}928929#[doc =
r" The `overlapping_range_endpoints` lint detects `match` arms that have [range patterns] that"]
#[doc = r" overlap on their endpoints."]
#[doc = r""]
#[doc =
r" [range patterns]: https://doc.rust-lang.org/nightly/reference/patterns.html#range-patterns"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" let x = 123u8;"]
#[doc = r" match x {"]
#[doc = r#" 0..=100 => { println!("small"); }"#]
#[doc = r#" 100..=255 => { println!("large"); }"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is likely a mistake to have range patterns in a match expression that overlap in this"]
#[doc =
r" way. Check that the beginning and end values are what you expect, and keep in mind that"]
#[doc = r" with `..=` the left and right bounds are inclusive."]
pub static OVERLAPPING_RANGE_ENDPOINTS: &crate::Lint =
&crate::Lint {
name: "OVERLAPPING_RANGE_ENDPOINTS",
default_level: crate::Warn,
desc: "detects range patterns with overlapping endpoints",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
930/// The `overlapping_range_endpoints` lint detects `match` arms that have [range patterns] that
931 /// overlap on their endpoints.
932 ///
933 /// [range patterns]: https://doc.rust-lang.org/nightly/reference/patterns.html#range-patterns
934 ///
935 /// ### Example
936 ///
937 /// ```rust
938 /// let x = 123u8;
939 /// match x {
940 /// 0..=100 => { println!("small"); }
941 /// 100..=255 => { println!("large"); }
942 /// }
943 /// ```
944 ///
945 /// {{produces}}
946 ///
947 /// ### Explanation
948 ///
949 /// It is likely a mistake to have range patterns in a match expression that overlap in this
950 /// way. Check that the beginning and end values are what you expect, and keep in mind that
951 /// with `..=` the left and right bounds are inclusive.
952pub OVERLAPPING_RANGE_ENDPOINTS,
953 Warn,
954"detects range patterns with overlapping endpoints"
955}956957#[doc =
r" The `non_contiguous_range_endpoints` lint detects likely off-by-one errors when using"]
#[doc = r" exclusive [range patterns]."]
#[doc = r""]
#[doc =
r" [range patterns]: https://doc.rust-lang.org/nightly/reference/patterns.html#range-patterns"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" let x = 123u32;"]
#[doc = r" match x {"]
#[doc = r#" 0..100 => { println!("small"); }"#]
#[doc = r#" 101..1000 => { println!("large"); }"#]
#[doc = r#" _ => { println!("larger"); }"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is likely a mistake to have range patterns in a match expression that miss out a single"]
#[doc =
r" number. Check that the beginning and end values are what you expect, and keep in mind that"]
#[doc =
r" with `..=` the right bound is inclusive, and with `..` it is exclusive."]
pub static NON_CONTIGUOUS_RANGE_ENDPOINTS: &crate::Lint =
&crate::Lint {
name: "NON_CONTIGUOUS_RANGE_ENDPOINTS",
default_level: crate::Warn,
desc: "detects off-by-one errors with exclusive range patterns",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
958/// The `non_contiguous_range_endpoints` lint detects likely off-by-one errors when using
959 /// exclusive [range patterns].
960 ///
961 /// [range patterns]: https://doc.rust-lang.org/nightly/reference/patterns.html#range-patterns
962 ///
963 /// ### Example
964 ///
965 /// ```rust
966 /// let x = 123u32;
967 /// match x {
968 /// 0..100 => { println!("small"); }
969 /// 101..1000 => { println!("large"); }
970 /// _ => { println!("larger"); }
971 /// }
972 /// ```
973 ///
974 /// {{produces}}
975 ///
976 /// ### Explanation
977 ///
978 /// It is likely a mistake to have range patterns in a match expression that miss out a single
979 /// number. Check that the beginning and end values are what you expect, and keep in mind that
980 /// with `..=` the right bound is inclusive, and with `..` it is exclusive.
981pub NON_CONTIGUOUS_RANGE_ENDPOINTS,
982 Warn,
983"detects off-by-one errors with exclusive range patterns"
984}985986#[doc =
r" The `bindings_with_variant_name` lint detects pattern bindings with"]
#[doc = r" the same name as one of the matched variants."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" pub enum Enum {"]
#[doc = r" Foo,"]
#[doc = r" Bar,"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" pub fn foo(x: Enum) {"]
#[doc = r" match x {"]
#[doc = r" Foo => {}"]
#[doc = r" Bar => {}"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" It is usually a mistake to specify an enum variant name as an"]
#[doc = r" [identifier pattern]. In the example above, the `match` arms are"]
#[doc =
r" specifying a variable name to bind the value of `x` to. The second arm"]
#[doc = r" is ignored because the first one matches *all* values. The likely"]
#[doc = r" intent is that the arm was intended to match on the enum variant."]
#[doc = r""]
#[doc = r" Two possible solutions are:"]
#[doc = r""]
#[doc = r" * Specify the enum variant using a [path pattern], such as"]
#[doc = r" `Enum::Foo`."]
#[doc = r" * Bring the enum variants into local scope, such as adding `use"]
#[doc = r" Enum::*;` to the beginning of the `foo` function in the example"]
#[doc = r" above."]
#[doc = r""]
#[doc =
r" [identifier pattern]: https://doc.rust-lang.org/reference/patterns.html#identifier-patterns"]
#[doc =
r" [path pattern]: https://doc.rust-lang.org/reference/patterns.html#path-patterns"]
pub static BINDINGS_WITH_VARIANT_NAME: &crate::Lint =
&crate::Lint {
name: "BINDINGS_WITH_VARIANT_NAME",
default_level: crate::Deny,
desc: "detects pattern bindings with the same name as one of the matched variants",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
987/// The `bindings_with_variant_name` lint detects pattern bindings with
988 /// the same name as one of the matched variants.
989 ///
990 /// ### Example
991 ///
992 /// ```rust,compile_fail
993 /// pub enum Enum {
994 /// Foo,
995 /// Bar,
996 /// }
997 ///
998 /// pub fn foo(x: Enum) {
999 /// match x {
1000 /// Foo => {}
1001 /// Bar => {}
1002 /// }
1003 /// }
1004 /// ```
1005 ///
1006 /// {{produces}}
1007 ///
1008 /// ### Explanation
1009 ///
1010 /// It is usually a mistake to specify an enum variant name as an
1011 /// [identifier pattern]. In the example above, the `match` arms are
1012 /// specifying a variable name to bind the value of `x` to. The second arm
1013 /// is ignored because the first one matches *all* values. The likely
1014 /// intent is that the arm was intended to match on the enum variant.
1015 ///
1016 /// Two possible solutions are:
1017 ///
1018 /// * Specify the enum variant using a [path pattern], such as
1019 /// `Enum::Foo`.
1020 /// * Bring the enum variants into local scope, such as adding `use
1021 /// Enum::*;` to the beginning of the `foo` function in the example
1022 /// above.
1023 ///
1024 /// [identifier pattern]: https://doc.rust-lang.org/reference/patterns.html#identifier-patterns
1025 /// [path pattern]: https://doc.rust-lang.org/reference/patterns.html#path-patterns
1026pub BINDINGS_WITH_VARIANT_NAME,
1027 Deny,
1028"detects pattern bindings with the same name as one of the matched variants"
1029}10301031#[doc = r" The `unused_macros` lint detects macros that were not used."]
#[doc = r""]
#[doc =
r" Note that this lint is distinct from the `unused_macro_rules` lint,"]
#[doc =
r" which checks for single rules that never match of an otherwise used"]
#[doc = r" macro, and thus never expand."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" macro_rules! unused {"]
#[doc = r" () => {};"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused macros may signal a mistake or unfinished code. To silence the"]
#[doc =
r" warning for the individual macro, prefix the name with an underscore"]
#[doc =
r" such as `_my_macro`. If you intended to export the macro to make it"]
#[doc =
r" available outside of the crate, use the [`macro_export` attribute]."]
#[doc = r""]
#[doc =
r" [`macro_export` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope"]
pub static UNUSED_MACROS: &crate::Lint =
&crate::Lint {
name: "UNUSED_MACROS",
default_level: crate::Warn,
desc: "detects macros that were not used",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1032/// The `unused_macros` lint detects macros that were not used.
1033 ///
1034 /// Note that this lint is distinct from the `unused_macro_rules` lint,
1035 /// which checks for single rules that never match of an otherwise used
1036 /// macro, and thus never expand.
1037 ///
1038 /// ### Example
1039 ///
1040 /// ```rust
1041 /// macro_rules! unused {
1042 /// () => {};
1043 /// }
1044 ///
1045 /// fn main() {
1046 /// }
1047 /// ```
1048 ///
1049 /// {{produces}}
1050 ///
1051 /// ### Explanation
1052 ///
1053 /// Unused macros may signal a mistake or unfinished code. To silence the
1054 /// warning for the individual macro, prefix the name with an underscore
1055 /// such as `_my_macro`. If you intended to export the macro to make it
1056 /// available outside of the crate, use the [`macro_export` attribute].
1057 ///
1058 /// [`macro_export` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope
1059pub UNUSED_MACROS,
1060 Warn,
1061"detects macros that were not used"
1062}10631064#[doc =
r" The `unused_macro_rules` lint detects macro rules that were not used."]
#[doc = r""]
#[doc =
r" Note that the lint is distinct from the `unused_macros` lint, which"]
#[doc =
r" fires if the entire macro is never called, while this lint fires for"]
#[doc = r" single unused rules of the macro that is otherwise used."]
#[doc = r" `unused_macro_rules` fires only if `unused_macros` wouldn't fire."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #[warn(unused_macro_rules)]"]
#[doc = r" macro_rules! unused_empty {"]
#[doc =
r#" (hello) => { println!("Hello, world!") }; // This rule is used"#]
#[doc = r#" () => { println!("empty") }; // This rule is unused"#]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" unused_empty!(hello);"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused macro rules may signal a mistake or unfinished code. Furthermore,"]
#[doc =
r" they slow down compilation. Right now, silencing the warning is not"]
#[doc =
r" supported on a single rule level, so you have to add an allow to the"]
#[doc = r" entire macro definition."]
#[doc = r""]
#[doc = r" If you intended to export the macro to make it"]
#[doc =
r" available outside of the crate, use the [`macro_export` attribute]."]
#[doc = r""]
#[doc =
r" [`macro_export` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope"]
pub static UNUSED_MACRO_RULES: &crate::Lint =
&crate::Lint {
name: "UNUSED_MACRO_RULES",
default_level: crate::Allow,
desc: "detects macro rules that were not used",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1065/// The `unused_macro_rules` lint detects macro rules that were not used.
1066 ///
1067 /// Note that the lint is distinct from the `unused_macros` lint, which
1068 /// fires if the entire macro is never called, while this lint fires for
1069 /// single unused rules of the macro that is otherwise used.
1070 /// `unused_macro_rules` fires only if `unused_macros` wouldn't fire.
1071 ///
1072 /// ### Example
1073 ///
1074 /// ```rust
1075 /// #[warn(unused_macro_rules)]
1076 /// macro_rules! unused_empty {
1077 /// (hello) => { println!("Hello, world!") }; // This rule is used
1078 /// () => { println!("empty") }; // This rule is unused
1079 /// }
1080 ///
1081 /// fn main() {
1082 /// unused_empty!(hello);
1083 /// }
1084 /// ```
1085 ///
1086 /// {{produces}}
1087 ///
1088 /// ### Explanation
1089 ///
1090 /// Unused macro rules may signal a mistake or unfinished code. Furthermore,
1091 /// they slow down compilation. Right now, silencing the warning is not
1092 /// supported on a single rule level, so you have to add an allow to the
1093 /// entire macro definition.
1094 ///
1095 /// If you intended to export the macro to make it
1096 /// available outside of the crate, use the [`macro_export` attribute].
1097 ///
1098 /// [`macro_export` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope
1099pub UNUSED_MACRO_RULES,
1100 Allow,
1101"detects macro rules that were not used"
1102}11031104#[doc = r" The `warnings` lint allows you to change the level of other"]
#[doc = r" lints which produce warnings."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![deny(warnings)]"]
#[doc = r" fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" The `warnings` lint is a bit special; by changing its level, you"]
#[doc =
r" change every other warning that would produce a warning to whatever"]
#[doc =
r" value you'd like. As such, you won't ever trigger this lint in your"]
#[doc = r" code directly."]
pub static WARNINGS: &crate::Lint =
&crate::Lint {
name: "WARNINGS",
default_level: crate::Warn,
desc: "mass-change the level for lints which produce warnings",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1105/// The `warnings` lint allows you to change the level of other
1106 /// lints which produce warnings.
1107 ///
1108 /// ### Example
1109 ///
1110 /// ```rust
1111 /// #![deny(warnings)]
1112 /// fn foo() {}
1113 /// ```
1114 ///
1115 /// {{produces}}
1116 ///
1117 /// ### Explanation
1118 ///
1119 /// The `warnings` lint is a bit special; by changing its level, you
1120 /// change every other warning that would produce a warning to whatever
1121 /// value you'd like. As such, you won't ever trigger this lint in your
1122 /// code directly.
1123pub WARNINGS,
1124 Warn,
1125"mass-change the level for lints which produce warnings"
1126}11271128#[doc =
r" The `unused_features` lint detects unused or unknown features found in"]
#[doc = r" crate-level [`feature` attributes]."]
#[doc = r""]
#[doc =
r" [`feature` attributes]: https://doc.rust-lang.org/nightly/unstable-book/"]
pub static UNUSED_FEATURES: &crate::Lint =
&crate::Lint {
name: "UNUSED_FEATURES",
default_level: crate::Warn,
desc: "unused features found in crate-level `#[feature]` directives",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1129/// The `unused_features` lint detects unused or unknown features found in
1130 /// crate-level [`feature` attributes].
1131 ///
1132 /// [`feature` attributes]: https://doc.rust-lang.org/nightly/unstable-book/
1133pub UNUSED_FEATURES,
1134 Warn,
1135"unused features found in crate-level `#[feature]` directives"
1136}11371138#[doc = r" The `duplicate_features` lint detects duplicate features found in"]
#[doc = r" crate-level [`feature` attributes]."]
#[doc = r""]
#[doc = r" Note: This lint used to be a hard error (E0636)."]
#[doc = r""]
#[doc =
r" [`feature` attributes]: https://doc.rust-lang.org/nightly/unstable-book/"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![allow(internal_features)]"]
#[doc = r" #![feature(rustc_attrs)]"]
#[doc = r" #![feature(rustc_attrs)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Enabling a feature more than once is a no-op."]
#[doc = r" To avoid this warning, remove the second `feature()` attribute."]
pub static DUPLICATE_FEATURES: &crate::Lint =
&crate::Lint {
name: "DUPLICATE_FEATURES",
default_level: crate::Deny,
desc: "duplicate features found in crate-level `#[feature]` directives",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1139/// The `duplicate_features` lint detects duplicate features found in
1140 /// crate-level [`feature` attributes].
1141 ///
1142 /// Note: This lint used to be a hard error (E0636).
1143 ///
1144 /// [`feature` attributes]: https://doc.rust-lang.org/nightly/unstable-book/
1145 ///
1146 /// ### Example
1147 ///
1148 /// ```rust,compile_fail
1149 /// # #![allow(internal_features)]
1150 /// #![feature(rustc_attrs)]
1151 /// #![feature(rustc_attrs)]
1152 /// ```
1153 ///
1154 /// {{produces}}
1155 ///
1156 /// ### Explanation
1157 ///
1158 /// Enabling a feature more than once is a no-op.
1159 /// To avoid this warning, remove the second `feature()` attribute.
1160pub DUPLICATE_FEATURES,
1161 Deny,
1162"duplicate features found in crate-level `#[feature]` directives"
1163}11641165#[doc = r" The `stable_features` lint detects a [`feature` attribute] that"]
#[doc = r" has since been made stable."]
#[doc = r""]
#[doc =
r" [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![feature(test_accepted_feature)]"]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" When a feature is stabilized, it is no longer necessary to include a"]
#[doc = r" `#![feature]` attribute for it. To fix, simply remove the"]
#[doc = r" `#![feature]` attribute."]
pub static STABLE_FEATURES: &crate::Lint =
&crate::Lint {
name: "STABLE_FEATURES",
default_level: crate::Warn,
desc: "stable features found in `#[feature]` directive",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1166/// The `stable_features` lint detects a [`feature` attribute] that
1167 /// has since been made stable.
1168 ///
1169 /// [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/
1170 ///
1171 /// ### Example
1172 ///
1173 /// ```rust
1174 /// #![feature(test_accepted_feature)]
1175 /// fn main() {}
1176 /// ```
1177 ///
1178 /// {{produces}}
1179 ///
1180 /// ### Explanation
1181 ///
1182 /// When a feature is stabilized, it is no longer necessary to include a
1183 /// `#![feature]` attribute for it. To fix, simply remove the
1184 /// `#![feature]` attribute.
1185pub STABLE_FEATURES,
1186 Warn,
1187"stable features found in `#[feature]` directive"
1188}11891190#[doc =
r" The `unknown_crate_types` lint detects an unknown crate type found in"]
#[doc = r" a [`crate_type` attribute]."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r#" #![crate_type="lol"]"#]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" An unknown value give to the `crate_type` attribute is almost"]
#[doc = r" certainly a mistake."]
#[doc = r""]
#[doc =
r" [`crate_type` attribute]: https://doc.rust-lang.org/reference/linkage.html"]
pub static UNKNOWN_CRATE_TYPES: &crate::Lint =
&crate::Lint {
name: "UNKNOWN_CRATE_TYPES",
default_level: crate::Deny,
desc: "unknown crate type found in `#[crate_type]` directive",
is_externally_loaded: false,
crate_level_only: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1191/// The `unknown_crate_types` lint detects an unknown crate type found in
1192 /// a [`crate_type` attribute].
1193 ///
1194 /// ### Example
1195 ///
1196 /// ```rust,compile_fail
1197 /// #![crate_type="lol"]
1198 /// fn main() {}
1199 /// ```
1200 ///
1201 /// {{produces}}
1202 ///
1203 /// ### Explanation
1204 ///
1205 /// An unknown value give to the `crate_type` attribute is almost
1206 /// certainly a mistake.
1207 ///
1208 /// [`crate_type` attribute]: https://doc.rust-lang.org/reference/linkage.html
1209pub UNKNOWN_CRATE_TYPES,
1210 Deny,
1211"unknown crate type found in `#[crate_type]` directive",
1212 crate_level_only
1213}12141215#[doc =
r" The `trivial_casts` lint detects trivial casts which could be replaced"]
#[doc = r" with coercion, which may require a temporary variable."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(trivial_casts)]"]
#[doc = r" let x: &u32 = &42;"]
#[doc = r" let y = x as *const u32;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" A trivial cast is a cast `e as T` where `e` has type `U` and `U` is a"]
#[doc =
r" subtype of `T`. This type of cast is usually unnecessary, as it can be"]
#[doc = r" usually be inferred."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because there are situations, such as"#]
#[doc = r" with FFI interfaces or complex type aliases, where it triggers"]
#[doc = r" incorrectly, or in situations where it will be more difficult to"]
#[doc =
r" clearly express the intent. It may be possible that this will become a"]
#[doc =
r" warning in the future, possibly with an explicit syntax for coercions"]
#[doc = r" providing a convenient way to work around the current issues."]
#[doc =
r" See [RFC 401 (coercions)][rfc-401], [RFC 803 (type ascription)][rfc-803] and"]
#[doc =
r" [RFC 3307 (remove type ascription)][rfc-3307] for historical context."]
#[doc = r""]
#[doc =
r" [rfc-401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md"]
#[doc =
r" [rfc-803]: https://github.com/rust-lang/rfcs/blob/master/text/0803-type-ascription.md"]
#[doc =
r" [rfc-3307]: https://github.com/rust-lang/rfcs/blob/master/text/3307-de-rfc-type-ascription.md"]
pub static TRIVIAL_CASTS: &crate::Lint =
&crate::Lint {
name: "TRIVIAL_CASTS",
default_level: crate::Allow,
desc: "detects trivial casts which could be removed",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1216/// The `trivial_casts` lint detects trivial casts which could be replaced
1217 /// with coercion, which may require a temporary variable.
1218 ///
1219 /// ### Example
1220 ///
1221 /// ```rust,compile_fail
1222 /// #![deny(trivial_casts)]
1223 /// let x: &u32 = &42;
1224 /// let y = x as *const u32;
1225 /// ```
1226 ///
1227 /// {{produces}}
1228 ///
1229 /// ### Explanation
1230 ///
1231 /// A trivial cast is a cast `e as T` where `e` has type `U` and `U` is a
1232 /// subtype of `T`. This type of cast is usually unnecessary, as it can be
1233 /// usually be inferred.
1234 ///
1235 /// This lint is "allow" by default because there are situations, such as
1236 /// with FFI interfaces or complex type aliases, where it triggers
1237 /// incorrectly, or in situations where it will be more difficult to
1238 /// clearly express the intent. It may be possible that this will become a
1239 /// warning in the future, possibly with an explicit syntax for coercions
1240 /// providing a convenient way to work around the current issues.
1241 /// See [RFC 401 (coercions)][rfc-401], [RFC 803 (type ascription)][rfc-803] and
1242 /// [RFC 3307 (remove type ascription)][rfc-3307] for historical context.
1243 ///
1244 /// [rfc-401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md
1245 /// [rfc-803]: https://github.com/rust-lang/rfcs/blob/master/text/0803-type-ascription.md
1246 /// [rfc-3307]: https://github.com/rust-lang/rfcs/blob/master/text/3307-de-rfc-type-ascription.md
1247pub TRIVIAL_CASTS,
1248 Allow,
1249"detects trivial casts which could be removed"
1250}12511252#[doc =
r" The `trivial_numeric_casts` lint detects trivial numeric casts of types"]
#[doc = r" which could be removed."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(trivial_numeric_casts)]"]
#[doc = r" let x = 42_i32 as i32;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" A trivial numeric cast is a cast of a numeric type to the same numeric"]
#[doc = r" type. This type of cast is usually unnecessary."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because there are situations, such as"#]
#[doc = r" with FFI interfaces or complex type aliases, where it triggers"]
#[doc = r" incorrectly, or in situations where it will be more difficult to"]
#[doc =
r" clearly express the intent. It may be possible that this will become a"]
#[doc =
r" warning in the future, possibly with an explicit syntax for coercions"]
#[doc = r" providing a convenient way to work around the current issues."]
#[doc =
r" See [RFC 401 (coercions)][rfc-401], [RFC 803 (type ascription)][rfc-803] and"]
#[doc =
r" [RFC 3307 (remove type ascription)][rfc-3307] for historical context."]
#[doc = r""]
#[doc =
r" [rfc-401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md"]
#[doc =
r" [rfc-803]: https://github.com/rust-lang/rfcs/blob/master/text/0803-type-ascription.md"]
#[doc =
r" [rfc-3307]: https://github.com/rust-lang/rfcs/blob/master/text/3307-de-rfc-type-ascription.md"]
pub static TRIVIAL_NUMERIC_CASTS: &crate::Lint =
&crate::Lint {
name: "TRIVIAL_NUMERIC_CASTS",
default_level: crate::Allow,
desc: "detects trivial casts of numeric types which could be removed",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1253/// The `trivial_numeric_casts` lint detects trivial numeric casts of types
1254 /// which could be removed.
1255 ///
1256 /// ### Example
1257 ///
1258 /// ```rust,compile_fail
1259 /// #![deny(trivial_numeric_casts)]
1260 /// let x = 42_i32 as i32;
1261 /// ```
1262 ///
1263 /// {{produces}}
1264 ///
1265 /// ### Explanation
1266 ///
1267 /// A trivial numeric cast is a cast of a numeric type to the same numeric
1268 /// type. This type of cast is usually unnecessary.
1269 ///
1270 /// This lint is "allow" by default because there are situations, such as
1271 /// with FFI interfaces or complex type aliases, where it triggers
1272 /// incorrectly, or in situations where it will be more difficult to
1273 /// clearly express the intent. It may be possible that this will become a
1274 /// warning in the future, possibly with an explicit syntax for coercions
1275 /// providing a convenient way to work around the current issues.
1276 /// See [RFC 401 (coercions)][rfc-401], [RFC 803 (type ascription)][rfc-803] and
1277 /// [RFC 3307 (remove type ascription)][rfc-3307] for historical context.
1278 ///
1279 /// [rfc-401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md
1280 /// [rfc-803]: https://github.com/rust-lang/rfcs/blob/master/text/0803-type-ascription.md
1281 /// [rfc-3307]: https://github.com/rust-lang/rfcs/blob/master/text/3307-de-rfc-type-ascription.md
1282pub TRIVIAL_NUMERIC_CASTS,
1283 Allow,
1284"detects trivial casts of numeric types which could be removed"
1285}12861287#[doc =
r" The `exported_private_dependencies` lint detects private dependencies"]
#[doc = r" that are exposed in a public interface."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs-dependency)"]
#[doc = r" pub fn foo() -> Option<some_private_dependency::Thing> {"]
#[doc = r" None"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r" warning: type `bar::Thing` from private dependency 'bar' in public interface"]
#[doc = r" --> src/lib.rs:3:1"]
#[doc = r" |"]
#[doc = r" 3 | pub fn foo() -> Option<bar::Thing> {"]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc = r" = note: `#[warn(exported_private_dependencies)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r#" Dependencies can be marked as "private" to indicate that they are not"#]
#[doc =
r" exposed in the public interface of a crate. This can be used by Cargo"]
#[doc =
r" to independently resolve those dependencies because it can assume it"]
#[doc = r" does not need to unify them with other packages using that same"]
#[doc = r" dependency. This lint is an indication of a violation of that"]
#[doc = r" contract."]
#[doc = r""]
#[doc =
r" To fix this, avoid exposing the dependency in your public interface."]
#[doc = r" Or, switch the dependency to a public dependency."]
#[doc = r""]
#[doc =
r" Note that support for this is only available on the nightly channel."]
#[doc =
r" See [RFC 1977] for more details, as well as the [Cargo documentation]."]
#[doc = r""]
#[doc =
r" [RFC 1977]: https://github.com/rust-lang/rfcs/blob/master/text/1977-public-private-dependencies.md"]
#[doc =
r" [Cargo documentation]: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#public-dependency"]
pub static EXPORTED_PRIVATE_DEPENDENCIES: &crate::Lint =
&crate::Lint {
name: "EXPORTED_PRIVATE_DEPENDENCIES",
default_level: crate::Warn,
desc: "public interface leaks type from a private dependency",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1288/// The `exported_private_dependencies` lint detects private dependencies
1289 /// that are exposed in a public interface.
1290 ///
1291 /// ### Example
1292 ///
1293 /// ```rust,ignore (needs-dependency)
1294 /// pub fn foo() -> Option<some_private_dependency::Thing> {
1295 /// None
1296 /// }
1297 /// ```
1298 ///
1299 /// This will produce:
1300 ///
1301 /// ```text
1302 /// warning: type `bar::Thing` from private dependency 'bar' in public interface
1303 /// --> src/lib.rs:3:1
1304 /// |
1305 /// 3 | pub fn foo() -> Option<bar::Thing> {
1306 /// | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1307 /// |
1308 /// = note: `#[warn(exported_private_dependencies)]` on by default
1309 /// ```
1310 ///
1311 /// ### Explanation
1312 ///
1313 /// Dependencies can be marked as "private" to indicate that they are not
1314 /// exposed in the public interface of a crate. This can be used by Cargo
1315 /// to independently resolve those dependencies because it can assume it
1316 /// does not need to unify them with other packages using that same
1317 /// dependency. This lint is an indication of a violation of that
1318 /// contract.
1319 ///
1320 /// To fix this, avoid exposing the dependency in your public interface.
1321 /// Or, switch the dependency to a public dependency.
1322 ///
1323 /// Note that support for this is only available on the nightly channel.
1324 /// See [RFC 1977] for more details, as well as the [Cargo documentation].
1325 ///
1326 /// [RFC 1977]: https://github.com/rust-lang/rfcs/blob/master/text/1977-public-private-dependencies.md
1327 /// [Cargo documentation]: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#public-dependency
1328pub EXPORTED_PRIVATE_DEPENDENCIES,
1329 Warn,
1330"public interface leaks type from a private dependency"
1331}13321333#[doc = r" The `pub_use_of_private_extern_crate` lint detects a specific"]
#[doc = r" situation of re-exporting a private `extern crate`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" extern crate core;"]
#[doc = r" pub use core as reexported_core;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" A public `use` declaration should not be used to publically re-export a"]
#[doc =
r" private `extern crate`. `pub extern crate` should be used instead."]
#[doc = r""]
#[doc = r" This was historically allowed, but is not the intended behavior"]
#[doc =
r" according to the visibility rules. This is a [future-incompatible]"]
#[doc = r" lint to transition this to a hard error in the future. See [issue"]
#[doc = r" #127909] for more details."]
#[doc = r""]
#[doc = r" [issue #127909]: https://github.com/rust-lang/rust/issues/127909"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static PUB_USE_OF_PRIVATE_EXTERN_CRATE: &crate::Lint =
&crate::Lint {
name: "PUB_USE_OF_PRIVATE_EXTERN_CRATE",
default_level: crate::Deny,
desc: "detect public re-exports of private extern crates",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 127909,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1334/// The `pub_use_of_private_extern_crate` lint detects a specific
1335 /// situation of re-exporting a private `extern crate`.
1336 ///
1337 /// ### Example
1338 ///
1339 /// ```rust,compile_fail
1340 /// extern crate core;
1341 /// pub use core as reexported_core;
1342 /// ```
1343 ///
1344 /// {{produces}}
1345 ///
1346 /// ### Explanation
1347 ///
1348 /// A public `use` declaration should not be used to publically re-export a
1349 /// private `extern crate`. `pub extern crate` should be used instead.
1350 ///
1351 /// This was historically allowed, but is not the intended behavior
1352 /// according to the visibility rules. This is a [future-incompatible]
1353 /// lint to transition this to a hard error in the future. See [issue
1354 /// #127909] for more details.
1355 ///
1356 /// [issue #127909]: https://github.com/rust-lang/rust/issues/127909
1357 /// [future-incompatible]: ../index.md#future-incompatible-lints
1358pub PUB_USE_OF_PRIVATE_EXTERN_CRATE,
1359 Deny,
1360"detect public re-exports of private extern crates",
1361 @future_incompatible = FutureIncompatibleInfo {
1362 reason: fcw!(FutureReleaseError #127909),
1363 report_in_deps: true,
1364 };
1365}13661367#[doc =
r" The `invalid_type_param_default` lint detects type parameter defaults"]
#[doc = r" erroneously allowed in an invalid location."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" fn foo<T=i32>(t: T) {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Default type parameters were only intended to be allowed in certain"]
#[doc =
r" situations, but historically the compiler allowed them everywhere."]
#[doc = r" This is a [future-incompatible] lint to transition this to a hard"]
#[doc = r" error in the future. See [issue #36887] for more details."]
#[doc = r""]
#[doc = r" [issue #36887]: https://github.com/rust-lang/rust/issues/36887"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static INVALID_TYPE_PARAM_DEFAULT: &crate::Lint =
&crate::Lint {
name: "INVALID_TYPE_PARAM_DEFAULT",
default_level: crate::Deny,
desc: "type parameter default erroneously allowed in invalid location",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 36887,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1368/// The `invalid_type_param_default` lint detects type parameter defaults
1369 /// erroneously allowed in an invalid location.
1370 ///
1371 /// ### Example
1372 ///
1373 /// ```rust,compile_fail
1374 /// fn foo<T=i32>(t: T) {}
1375 /// ```
1376 ///
1377 /// {{produces}}
1378 ///
1379 /// ### Explanation
1380 ///
1381 /// Default type parameters were only intended to be allowed in certain
1382 /// situations, but historically the compiler allowed them everywhere.
1383 /// This is a [future-incompatible] lint to transition this to a hard
1384 /// error in the future. See [issue #36887] for more details.
1385 ///
1386 /// [issue #36887]: https://github.com/rust-lang/rust/issues/36887
1387 /// [future-incompatible]: ../index.md#future-incompatible-lints
1388pub INVALID_TYPE_PARAM_DEFAULT,
1389 Deny,
1390"type parameter default erroneously allowed in invalid location",
1391 @future_incompatible = FutureIncompatibleInfo {
1392 reason: fcw!(FutureReleaseError #36887),
1393 report_in_deps: true,
1394 };
1395}13961397#[doc = r" The `renamed_and_removed_lints` lint detects lints that have been"]
#[doc = r" renamed or removed."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![deny(raw_pointer_derive)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" To fix this, either remove the lint or use the new name. This can help"]
#[doc = r" avoid confusion about lints that are no longer valid, and help"]
#[doc = r" maintain consistency for renamed lints."]
pub static RENAMED_AND_REMOVED_LINTS: &crate::Lint =
&crate::Lint {
name: "RENAMED_AND_REMOVED_LINTS",
default_level: crate::Warn,
desc: "lints that have been renamed or removed",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1398/// The `renamed_and_removed_lints` lint detects lints that have been
1399 /// renamed or removed.
1400 ///
1401 /// ### Example
1402 ///
1403 /// ```rust
1404 /// #![deny(raw_pointer_derive)]
1405 /// ```
1406 ///
1407 /// {{produces}}
1408 ///
1409 /// ### Explanation
1410 ///
1411 /// To fix this, either remove the lint or use the new name. This can help
1412 /// avoid confusion about lints that are no longer valid, and help
1413 /// maintain consistency for renamed lints.
1414pub RENAMED_AND_REMOVED_LINTS,
1415 Warn,
1416"lints that have been renamed or removed"
1417}14181419#[doc =
r" The `const_item_mutation` lint detects attempts to mutate a `const`"]
#[doc = r" item."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" const FOO: [i32; 1] = [0];"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" FOO[0] = 1;"]
#[doc = r#" // This will print "[0]"."#]
#[doc = r#" println!("{:?}", FOO);"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Trying to directly mutate a `const` item is almost always a mistake."]
#[doc =
r" What is happening in the example above is that a temporary copy of the"]
#[doc =
r" `const` is mutated, but the original `const` is not. Each time you"]
#[doc =
r" refer to the `const` by name (such as `FOO` in the example above), a"]
#[doc = r" separate copy of the value is inlined at that location."]
#[doc = r""]
#[doc = r" This lint checks for writing directly to a field (`FOO.field ="]
#[doc = r" some_value`) or array entry (`FOO[0] = val`), or taking a mutable"]
#[doc = r" reference to the const item (`&mut FOO`), including through an"]
#[doc = r" autoderef (`FOO.some_mut_self_method()`)."]
#[doc = r""]
#[doc =
r" There are various alternatives depending on what you are trying to"]
#[doc = r" accomplish:"]
#[doc = r""]
#[doc = r" * First, always reconsider using mutable globals, as they can be"]
#[doc =
r" difficult to use correctly, and can make the code more difficult to"]
#[doc = r" use or understand."]
#[doc =
r" * If you are trying to perform a one-time initialization of a global:"]
#[doc =
r" * If the value can be computed at compile-time, consider using"]
#[doc = r" const-compatible values (see [Constant Evaluation])."]
#[doc =
r" * For more complex single-initialization cases, consider using"]
#[doc = r" [`std::sync::LazyLock`]."]
#[doc =
r" * If you truly need a mutable global, consider using a [`static`],"]
#[doc = r" which has a variety of options:"]
#[doc = r" * Simple data types can be directly defined and mutated with an"]
#[doc = r" [`atomic`] type."]
#[doc =
r" * More complex types can be placed in a synchronization primitive"]
#[doc =
r" like a [`Mutex`], which can be initialized with one of the options"]
#[doc = r" listed above."]
#[doc =
r" * A [mutable `static`] is a low-level primitive, requiring unsafe."]
#[doc = r" Typically This should be avoided in preference of something"]
#[doc = r" higher-level like one of the above."]
#[doc = r""]
#[doc =
r" [Constant Evaluation]: https://doc.rust-lang.org/reference/const_eval.html"]
#[doc =
r" [`static`]: https://doc.rust-lang.org/reference/items/static-items.html"]
#[doc =
r" [mutable `static`]: https://doc.rust-lang.org/reference/items/static-items.html#mutable-statics"]
#[doc =
r" [`std::sync::LazyLock`]: https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html"]
#[doc = r" [`atomic`]: https://doc.rust-lang.org/std/sync/atomic/index.html"]
#[doc = r" [`Mutex`]: https://doc.rust-lang.org/std/sync/struct.Mutex.html"]
pub static CONST_ITEM_MUTATION: &crate::Lint =
&crate::Lint {
name: "CONST_ITEM_MUTATION",
default_level: crate::Warn,
desc: "detects attempts to mutate a `const` item",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1420/// The `const_item_mutation` lint detects attempts to mutate a `const`
1421 /// item.
1422 ///
1423 /// ### Example
1424 ///
1425 /// ```rust
1426 /// const FOO: [i32; 1] = [0];
1427 ///
1428 /// fn main() {
1429 /// FOO[0] = 1;
1430 /// // This will print "[0]".
1431 /// println!("{:?}", FOO);
1432 /// }
1433 /// ```
1434 ///
1435 /// {{produces}}
1436 ///
1437 /// ### Explanation
1438 ///
1439 /// Trying to directly mutate a `const` item is almost always a mistake.
1440 /// What is happening in the example above is that a temporary copy of the
1441 /// `const` is mutated, but the original `const` is not. Each time you
1442 /// refer to the `const` by name (such as `FOO` in the example above), a
1443 /// separate copy of the value is inlined at that location.
1444 ///
1445 /// This lint checks for writing directly to a field (`FOO.field =
1446 /// some_value`) or array entry (`FOO[0] = val`), or taking a mutable
1447 /// reference to the const item (`&mut FOO`), including through an
1448 /// autoderef (`FOO.some_mut_self_method()`).
1449 ///
1450 /// There are various alternatives depending on what you are trying to
1451 /// accomplish:
1452 ///
1453 /// * First, always reconsider using mutable globals, as they can be
1454 /// difficult to use correctly, and can make the code more difficult to
1455 /// use or understand.
1456 /// * If you are trying to perform a one-time initialization of a global:
1457 /// * If the value can be computed at compile-time, consider using
1458 /// const-compatible values (see [Constant Evaluation]).
1459 /// * For more complex single-initialization cases, consider using
1460 /// [`std::sync::LazyLock`].
1461 /// * If you truly need a mutable global, consider using a [`static`],
1462 /// which has a variety of options:
1463 /// * Simple data types can be directly defined and mutated with an
1464 /// [`atomic`] type.
1465 /// * More complex types can be placed in a synchronization primitive
1466 /// like a [`Mutex`], which can be initialized with one of the options
1467 /// listed above.
1468 /// * A [mutable `static`] is a low-level primitive, requiring unsafe.
1469 /// Typically This should be avoided in preference of something
1470 /// higher-level like one of the above.
1471 ///
1472 /// [Constant Evaluation]: https://doc.rust-lang.org/reference/const_eval.html
1473 /// [`static`]: https://doc.rust-lang.org/reference/items/static-items.html
1474 /// [mutable `static`]: https://doc.rust-lang.org/reference/items/static-items.html#mutable-statics
1475 /// [`std::sync::LazyLock`]: https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html
1476 /// [`atomic`]: https://doc.rust-lang.org/std/sync/atomic/index.html
1477 /// [`Mutex`]: https://doc.rust-lang.org/std/sync/struct.Mutex.html
1478pub CONST_ITEM_MUTATION,
1479 Warn,
1480"detects attempts to mutate a `const` item",
1481}14821483#[doc = r" The `patterns_in_fns_without_body` lint detects `mut` identifier"]
#[doc = r" patterns as a parameter in functions without a body."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" trait Trait {"]
#[doc = r" fn foo(mut arg: u8);"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" To fix this, remove `mut` from the parameter in the trait definition;"]
#[doc =
r" it can be used in the implementation. That is, the following is OK:"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" trait Trait {"]
#[doc = r" fn foo(arg: u8); // Removed `mut` here"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl Trait for i32 {"]
#[doc = r" fn foo(mut arg: u8) { // `mut` here is OK"]
#[doc = r""]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" Trait definitions can define functions without a body to specify a"]
#[doc =
r" function that implementors must define. The parameter names in the"]
#[doc =
r" body-less functions are only allowed to be `_` or an [identifier] for"]
#[doc =
r" documentation purposes (only the type is relevant). Previous versions"]
#[doc =
r" of the compiler erroneously allowed [identifier patterns] with the"]
#[doc = r" `mut` keyword, but this was not intended to be allowed. This is a"]
#[doc =
r" [future-incompatible] lint to transition this to a hard error in the"]
#[doc = r" future. See [issue #35203] for more details."]
#[doc = r""]
#[doc =
r" [identifier]: https://doc.rust-lang.org/reference/identifiers.html"]
#[doc =
r" [identifier patterns]: https://doc.rust-lang.org/reference/patterns.html#identifier-patterns"]
#[doc = r" [issue #35203]: https://github.com/rust-lang/rust/issues/35203"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static PATTERNS_IN_FNS_WITHOUT_BODY: &crate::Lint =
&crate::Lint {
name: "PATTERNS_IN_FNS_WITHOUT_BODY",
default_level: crate::Deny,
desc: "patterns in functions without body were erroneously allowed",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 35203,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1484/// The `patterns_in_fns_without_body` lint detects `mut` identifier
1485 /// patterns as a parameter in functions without a body.
1486 ///
1487 /// ### Example
1488 ///
1489 /// ```rust,compile_fail
1490 /// trait Trait {
1491 /// fn foo(mut arg: u8);
1492 /// }
1493 /// ```
1494 ///
1495 /// {{produces}}
1496 ///
1497 /// ### Explanation
1498 ///
1499 /// To fix this, remove `mut` from the parameter in the trait definition;
1500 /// it can be used in the implementation. That is, the following is OK:
1501 ///
1502 /// ```rust
1503 /// trait Trait {
1504 /// fn foo(arg: u8); // Removed `mut` here
1505 /// }
1506 ///
1507 /// impl Trait for i32 {
1508 /// fn foo(mut arg: u8) { // `mut` here is OK
1509 ///
1510 /// }
1511 /// }
1512 /// ```
1513 ///
1514 /// Trait definitions can define functions without a body to specify a
1515 /// function that implementors must define. The parameter names in the
1516 /// body-less functions are only allowed to be `_` or an [identifier] for
1517 /// documentation purposes (only the type is relevant). Previous versions
1518 /// of the compiler erroneously allowed [identifier patterns] with the
1519 /// `mut` keyword, but this was not intended to be allowed. This is a
1520 /// [future-incompatible] lint to transition this to a hard error in the
1521 /// future. See [issue #35203] for more details.
1522 ///
1523 /// [identifier]: https://doc.rust-lang.org/reference/identifiers.html
1524 /// [identifier patterns]: https://doc.rust-lang.org/reference/patterns.html#identifier-patterns
1525 /// [issue #35203]: https://github.com/rust-lang/rust/issues/35203
1526 /// [future-incompatible]: ../index.md#future-incompatible-lints
1527pub PATTERNS_IN_FNS_WITHOUT_BODY,
1528 Deny,
1529"patterns in functions without body were erroneously allowed",
1530 @future_incompatible = FutureIncompatibleInfo {
1531 reason: fcw!(FutureReleaseError #35203),
1532 };
1533}15341535#[doc = r" The `late_bound_lifetime_arguments` lint detects generic lifetime"]
#[doc = r" arguments in path segments with late bound lifetime parameters."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" struct S;"]
#[doc = r""]
#[doc = r" impl S {"]
#[doc = r" fn late(self, _: &u8, _: &u8) {}"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" S.late::<'static>(&0, &0);"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" It is not clear how to provide arguments for early-bound lifetime"]
#[doc =
r" parameters if they are intermixed with late-bound parameters in the"]
#[doc =
r" same list. For now, providing any explicit arguments will trigger this"]
#[doc =
r" lint if late-bound parameters are present, so in the future a solution"]
#[doc =
r" can be adopted without hitting backward compatibility issues. This is"]
#[doc =
r" a [future-incompatible] lint to transition this to a hard error in the"]
#[doc =
r" future. See [issue #42868] for more details, along with a description"]
#[doc = r" of the difference between early and late-bound parameters."]
#[doc = r""]
#[doc = r" [issue #42868]: https://github.com/rust-lang/rust/issues/42868"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static LATE_BOUND_LIFETIME_ARGUMENTS: &crate::Lint =
&crate::Lint {
name: "LATE_BOUND_LIFETIME_ARGUMENTS",
default_level: crate::Warn,
desc: "detects generic lifetime arguments in path segments with late bound lifetime parameters",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 42868,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1536/// The `late_bound_lifetime_arguments` lint detects generic lifetime
1537 /// arguments in path segments with late bound lifetime parameters.
1538 ///
1539 /// ### Example
1540 ///
1541 /// ```rust
1542 /// struct S;
1543 ///
1544 /// impl S {
1545 /// fn late(self, _: &u8, _: &u8) {}
1546 /// }
1547 ///
1548 /// fn main() {
1549 /// S.late::<'static>(&0, &0);
1550 /// }
1551 /// ```
1552 ///
1553 /// {{produces}}
1554 ///
1555 /// ### Explanation
1556 ///
1557 /// It is not clear how to provide arguments for early-bound lifetime
1558 /// parameters if they are intermixed with late-bound parameters in the
1559 /// same list. For now, providing any explicit arguments will trigger this
1560 /// lint if late-bound parameters are present, so in the future a solution
1561 /// can be adopted without hitting backward compatibility issues. This is
1562 /// a [future-incompatible] lint to transition this to a hard error in the
1563 /// future. See [issue #42868] for more details, along with a description
1564 /// of the difference between early and late-bound parameters.
1565 ///
1566 /// [issue #42868]: https://github.com/rust-lang/rust/issues/42868
1567 /// [future-incompatible]: ../index.md#future-incompatible-lints
1568pub LATE_BOUND_LIFETIME_ARGUMENTS,
1569 Warn,
1570"detects generic lifetime arguments in path segments with late bound lifetime parameters",
1571 @future_incompatible = FutureIncompatibleInfo {
1572 reason: fcw!(FutureReleaseError #42868),
1573 };
1574}15751576#[doc =
r" The `coherence_leak_check` lint detects conflicting implementations of"]
#[doc = r" a trait that are only distinguished by the old leak-check code."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" trait SomeTrait { }"]
#[doc = r" impl SomeTrait for for<'a> fn(&'a u8) { }"]
#[doc = r" impl<'a> SomeTrait for fn(&'a u8) { }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" In the past, the compiler would accept trait implementations for"]
#[doc =
r" identical functions that differed only in where the lifetime binder"]
#[doc =
r" appeared. Due to a change in the borrow checker implementation to fix"]
#[doc =
r" several bugs, this is no longer allowed. However, since this affects"]
#[doc =
r" existing code, this is a [future-incompatible] lint to transition this"]
#[doc = r" to a hard error in the future."]
#[doc = r""]
#[doc = r#" Code relying on this pattern should introduce "[newtypes]","#]
#[doc = r" like `struct Foo(for<'a> fn(&'a u8))`."]
#[doc = r""]
#[doc = r" See [issue #56105] for more details."]
#[doc = r""]
#[doc = r" [issue #56105]: https://github.com/rust-lang/rust/issues/56105"]
#[doc =
r" [newtypes]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#using-the-newtype-pattern-for-type-safety-and-abstraction"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static COHERENCE_LEAK_CHECK: &crate::Lint =
&crate::Lint {
name: "COHERENCE_LEAK_CHECK",
default_level: crate::Warn,
desc: "distinct impls distinguished only by the leak-check code",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::Custom("the behavior may change in a future release",
crate::ReleaseFcw { issue_number: 56105 }),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1577/// The `coherence_leak_check` lint detects conflicting implementations of
1578 /// a trait that are only distinguished by the old leak-check code.
1579 ///
1580 /// ### Example
1581 ///
1582 /// ```rust
1583 /// trait SomeTrait { }
1584 /// impl SomeTrait for for<'a> fn(&'a u8) { }
1585 /// impl<'a> SomeTrait for fn(&'a u8) { }
1586 /// ```
1587 ///
1588 /// {{produces}}
1589 ///
1590 /// ### Explanation
1591 ///
1592 /// In the past, the compiler would accept trait implementations for
1593 /// identical functions that differed only in where the lifetime binder
1594 /// appeared. Due to a change in the borrow checker implementation to fix
1595 /// several bugs, this is no longer allowed. However, since this affects
1596 /// existing code, this is a [future-incompatible] lint to transition this
1597 /// to a hard error in the future.
1598 ///
1599 /// Code relying on this pattern should introduce "[newtypes]",
1600 /// like `struct Foo(for<'a> fn(&'a u8))`.
1601 ///
1602 /// See [issue #56105] for more details.
1603 ///
1604 /// [issue #56105]: https://github.com/rust-lang/rust/issues/56105
1605 /// [newtypes]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#using-the-newtype-pattern-for-type-safety-and-abstraction
1606 /// [future-incompatible]: ../index.md#future-incompatible-lints
1607pub COHERENCE_LEAK_CHECK,
1608 Warn,
1609"distinct impls distinguished only by the leak-check code",
1610 @future_incompatible = FutureIncompatibleInfo {
1611 reason: fcw!("the behavior may change in a future release" #56105),
1612 };
1613}16141615#[doc = r" The `deprecated` lint detects use of deprecated items."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #[deprecated]"]
#[doc = r" fn foo() {}"]
#[doc = r""]
#[doc = r" fn bar() {"]
#[doc = r" foo();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r#" Items may be marked "deprecated" with the [`deprecated` attribute] to"#]
#[doc =
r" indicate that they should no longer be used. Usually the attribute"]
#[doc = r" should include a note on what to use instead, or check the"]
#[doc = r" documentation."]
#[doc = r""]
#[doc =
r" [`deprecated` attribute]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-deprecated-attribute"]
pub static DEPRECATED: &crate::Lint =
&crate::Lint {
name: "DEPRECATED",
default_level: crate::Warn,
desc: "detects use of deprecated items",
is_externally_loaded: false,
report_in_external_macro: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1616/// The `deprecated` lint detects use of deprecated items.
1617 ///
1618 /// ### Example
1619 ///
1620 /// ```rust
1621 /// #[deprecated]
1622 /// fn foo() {}
1623 ///
1624 /// fn bar() {
1625 /// foo();
1626 /// }
1627 /// ```
1628 ///
1629 /// {{produces}}
1630 ///
1631 /// ### Explanation
1632 ///
1633 /// Items may be marked "deprecated" with the [`deprecated` attribute] to
1634 /// indicate that they should no longer be used. Usually the attribute
1635 /// should include a note on what to use instead, or check the
1636 /// documentation.
1637 ///
1638 /// [`deprecated` attribute]: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-deprecated-attribute
1639pub DEPRECATED,
1640 Warn,
1641"detects use of deprecated items",
1642 report_in_external_macro
1643}16441645#[doc =
r" The `unused_unsafe` lint detects unnecessary use of an `unsafe` block."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" unsafe {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" If nothing within the block requires `unsafe`, then remove the"]
#[doc =
r" `unsafe` marker because it is not required and may cause confusion."]
pub static UNUSED_UNSAFE: &crate::Lint =
&crate::Lint {
name: "UNUSED_UNSAFE",
default_level: crate::Warn,
desc: "unnecessary use of an `unsafe` block",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1646/// The `unused_unsafe` lint detects unnecessary use of an `unsafe` block.
1647 ///
1648 /// ### Example
1649 ///
1650 /// ```rust
1651 /// unsafe {}
1652 /// ```
1653 ///
1654 /// {{produces}}
1655 ///
1656 /// ### Explanation
1657 ///
1658 /// If nothing within the block requires `unsafe`, then remove the
1659 /// `unsafe` marker because it is not required and may cause confusion.
1660pub UNUSED_UNSAFE,
1661 Warn,
1662"unnecessary use of an `unsafe` block"
1663}16641665#[doc =
r" The `unused_mut` lint detects mut variables which don't need to be"]
#[doc = r" mutable."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" let mut x = 5;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" The preferred style is to only mark variables as `mut` if it is"]
#[doc = r" required."]
pub static UNUSED_MUT: &crate::Lint =
&crate::Lint {
name: "UNUSED_MUT",
default_level: crate::Warn,
desc: "detect mut variables which don't need to be mutable",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1666/// The `unused_mut` lint detects mut variables which don't need to be
1667 /// mutable.
1668 ///
1669 /// ### Example
1670 ///
1671 /// ```rust
1672 /// let mut x = 5;
1673 /// ```
1674 ///
1675 /// {{produces}}
1676 ///
1677 /// ### Explanation
1678 ///
1679 /// The preferred style is to only mark variables as `mut` if it is
1680 /// required.
1681pub UNUSED_MUT,
1682 Warn,
1683"detect mut variables which don't need to be mutable"
1684}16851686#[doc = r" The `rust_2024_incompatible_pat` lint"]
#[doc =
r" detects patterns whose meaning will change in the Rust 2024 edition."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2021"]
#[doc = r" #![warn(rust_2024_incompatible_pat)]"]
#[doc = r""]
#[doc = r" if let Some(&a) = &Some(&0u8) {"]
#[doc = r" let _: u8 = a;"]
#[doc = r" }"]
#[doc = r" if let Some(mut _a) = &mut Some(0u8) {"]
#[doc = r" _a = 7u8;"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In Rust 2024 and above, the `mut` keyword does not reset the pattern binding mode,"]
#[doc =
r" and nor do `&` or `&mut` patterns. The lint will suggest code that"]
#[doc = r" has the same meaning in all editions."]
pub static RUST_2024_INCOMPATIBLE_PAT: &crate::Lint =
&crate::Lint {
name: "RUST_2024_INCOMPATIBLE_PAT",
default_level: crate::Allow,
desc: "detects patterns whose meaning will change in Rust 2024",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionSemanticsChange(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "match-ergonomics",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1687/// The `rust_2024_incompatible_pat` lint
1688 /// detects patterns whose meaning will change in the Rust 2024 edition.
1689 ///
1690 /// ### Example
1691 ///
1692 /// ```rust,edition2021
1693 /// #![warn(rust_2024_incompatible_pat)]
1694 ///
1695 /// if let Some(&a) = &Some(&0u8) {
1696 /// let _: u8 = a;
1697 /// }
1698 /// if let Some(mut _a) = &mut Some(0u8) {
1699 /// _a = 7u8;
1700 /// }
1701 /// ```
1702 ///
1703 /// {{produces}}
1704 ///
1705 /// ### Explanation
1706 ///
1707 /// In Rust 2024 and above, the `mut` keyword does not reset the pattern binding mode,
1708 /// and nor do `&` or `&mut` patterns. The lint will suggest code that
1709 /// has the same meaning in all editions.
1710pub RUST_2024_INCOMPATIBLE_PAT,
1711 Allow,
1712"detects patterns whose meaning will change in Rust 2024",
1713 @future_incompatible = FutureIncompatibleInfo {
1714 reason: fcw!(EditionSemanticsChange 2024 "match-ergonomics"),
1715 };
1716}17171718#[doc = r" The `unconditional_recursion` lint detects functions that cannot"]
#[doc = r" return without calling themselves."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" fn foo() {"]
#[doc = r" foo();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is usually a mistake to have a recursive call that does not have"]
#[doc =
r" some condition to cause it to terminate. If you really intend to have"]
#[doc = r" an infinite loop, using a `loop` expression is recommended."]
pub static UNCONDITIONAL_RECURSION: &crate::Lint =
&crate::Lint {
name: "UNCONDITIONAL_RECURSION",
default_level: crate::Warn,
desc: "functions that cannot return without calling themselves",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1719/// The `unconditional_recursion` lint detects functions that cannot
1720 /// return without calling themselves.
1721 ///
1722 /// ### Example
1723 ///
1724 /// ```rust
1725 /// fn foo() {
1726 /// foo();
1727 /// }
1728 /// ```
1729 ///
1730 /// {{produces}}
1731 ///
1732 /// ### Explanation
1733 ///
1734 /// It is usually a mistake to have a recursive call that does not have
1735 /// some condition to cause it to terminate. If you really intend to have
1736 /// an infinite loop, using a `loop` expression is recommended.
1737pub UNCONDITIONAL_RECURSION,
1738 Warn,
1739"functions that cannot return without calling themselves"
1740}17411742#[doc =
r" The `single_use_lifetimes` lint detects lifetimes that are only used"]
#[doc = r" once."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(single_use_lifetimes)]"]
#[doc = r""]
#[doc = r" fn foo<'a>(x: &'a u32) {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Specifying an explicit lifetime like `'a` in a function or `impl`"]
#[doc =
r" should only be used to link together two things. Otherwise, you should"]
#[doc =
r" just use `'_` to indicate that the lifetime is not linked to anything,"]
#[doc = r" or elide the lifetime altogether if possible."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it was introduced at a time"#]
#[doc =
r" when `'_` and elided lifetimes were first being introduced, and this"]
#[doc =
r" lint would be too noisy. Also, there are some known false positives"]
#[doc =
r" that it produces. See [RFC 2115] for historical context, and [issue"]
#[doc = r" #44752] for more details."]
#[doc = r""]
#[doc =
r" [RFC 2115]: https://github.com/rust-lang/rfcs/blob/master/text/2115-argument-lifetimes.md"]
#[doc = r" [issue #44752]: https://github.com/rust-lang/rust/issues/44752"]
pub static SINGLE_USE_LIFETIMES: &crate::Lint =
&crate::Lint {
name: "SINGLE_USE_LIFETIMES",
default_level: crate::Allow,
desc: "detects lifetime parameters that are only used once",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1743/// The `single_use_lifetimes` lint detects lifetimes that are only used
1744 /// once.
1745 ///
1746 /// ### Example
1747 ///
1748 /// ```rust,compile_fail
1749 /// #![deny(single_use_lifetimes)]
1750 ///
1751 /// fn foo<'a>(x: &'a u32) {}
1752 /// ```
1753 ///
1754 /// {{produces}}
1755 ///
1756 /// ### Explanation
1757 ///
1758 /// Specifying an explicit lifetime like `'a` in a function or `impl`
1759 /// should only be used to link together two things. Otherwise, you should
1760 /// just use `'_` to indicate that the lifetime is not linked to anything,
1761 /// or elide the lifetime altogether if possible.
1762 ///
1763 /// This lint is "allow" by default because it was introduced at a time
1764 /// when `'_` and elided lifetimes were first being introduced, and this
1765 /// lint would be too noisy. Also, there are some known false positives
1766 /// that it produces. See [RFC 2115] for historical context, and [issue
1767 /// #44752] for more details.
1768 ///
1769 /// [RFC 2115]: https://github.com/rust-lang/rfcs/blob/master/text/2115-argument-lifetimes.md
1770 /// [issue #44752]: https://github.com/rust-lang/rust/issues/44752
1771pub SINGLE_USE_LIFETIMES,
1772 Allow,
1773"detects lifetime parameters that are only used once"
1774}17751776#[doc =
r" The `unused_lifetimes` lint detects lifetime parameters that are never"]
#[doc = r" used."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #[deny(unused_lifetimes)]"]
#[doc = r""]
#[doc = r" pub fn foo<'a>() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused lifetime parameters may signal a mistake or unfinished code."]
#[doc = r" Consider removing the parameter."]
pub static UNUSED_LIFETIMES: &crate::Lint =
&crate::Lint {
name: "UNUSED_LIFETIMES",
default_level: crate::Allow,
desc: "detects lifetime parameters that are never used",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1777/// The `unused_lifetimes` lint detects lifetime parameters that are never
1778 /// used.
1779 ///
1780 /// ### Example
1781 ///
1782 /// ```rust,compile_fail
1783 /// #[deny(unused_lifetimes)]
1784 ///
1785 /// pub fn foo<'a>() {}
1786 /// ```
1787 ///
1788 /// {{produces}}
1789 ///
1790 /// ### Explanation
1791 ///
1792 /// Unused lifetime parameters may signal a mistake or unfinished code.
1793 /// Consider removing the parameter.
1794pub UNUSED_LIFETIMES,
1795 Allow,
1796"detects lifetime parameters that are never used"
1797}17981799#[doc =
r" The `redundant_lifetimes` lint detects lifetime parameters that are"]
#[doc = r" redundant because they are equal to another named lifetime."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #[deny(redundant_lifetimes)]"]
#[doc = r""]
#[doc =
r" // `'a = 'static`, so all usages of `'a` can be replaced with `'static`"]
#[doc = r" pub fn bar<'a: 'static>() {}"]
#[doc = r""]
#[doc = r" // `'a = 'b`, so all usages of `'b` can be replaced with `'a`"]
#[doc = r" pub fn bar<'a: 'b, 'b: 'a>() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused lifetime parameters may signal a mistake or unfinished code."]
#[doc = r" Consider removing the parameter."]
pub static REDUNDANT_LIFETIMES: &crate::Lint =
&crate::Lint {
name: "REDUNDANT_LIFETIMES",
default_level: crate::Allow,
desc: "detects lifetime parameters that are redundant because they are equal to some other named lifetime",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1800/// The `redundant_lifetimes` lint detects lifetime parameters that are
1801 /// redundant because they are equal to another named lifetime.
1802 ///
1803 /// ### Example
1804 ///
1805 /// ```rust,compile_fail
1806 /// #[deny(redundant_lifetimes)]
1807 ///
1808 /// // `'a = 'static`, so all usages of `'a` can be replaced with `'static`
1809 /// pub fn bar<'a: 'static>() {}
1810 ///
1811 /// // `'a = 'b`, so all usages of `'b` can be replaced with `'a`
1812 /// pub fn bar<'a: 'b, 'b: 'a>() {}
1813 /// ```
1814 ///
1815 /// {{produces}}
1816 ///
1817 /// ### Explanation
1818 ///
1819 /// Unused lifetime parameters may signal a mistake or unfinished code.
1820 /// Consider removing the parameter.
1821pub REDUNDANT_LIFETIMES,
1822 Allow,
1823"detects lifetime parameters that are redundant because they are equal to some other named lifetime"
1824}18251826#[doc = r" The `tyvar_behind_raw_pointer` lint detects raw pointer to an"]
#[doc = r" inference variable."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2015"]
#[doc = r" // edition 2015"]
#[doc = r" let data = std::ptr::null();"]
#[doc = r" let _ = &data as *const *const ();"]
#[doc = r""]
#[doc = r" if data.is_null() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This kind of inference was previously allowed, but with the future"]
#[doc =
r" arrival of [arbitrary self types], this can introduce ambiguity. To"]
#[doc = r" resolve this, use an explicit type instead of relying on type"]
#[doc = r" inference."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a hard"]
#[doc =
r" error in the 2018 edition. See [issue #46906] for more details. This"]
#[doc = r#" is currently a hard-error on the 2018 edition, and is "warn" by"#]
#[doc = r" default in the 2015 edition."]
#[doc = r""]
#[doc =
r" [arbitrary self types]: https://github.com/rust-lang/rust/issues/44874"]
#[doc = r" [issue #46906]: https://github.com/rust-lang/rust/issues/46906"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static TYVAR_BEHIND_RAW_POINTER: &crate::Lint =
&crate::Lint {
name: "TYVAR_BEHIND_RAW_POINTER",
default_level: crate::Warn,
desc: "raw pointer to an inference variable",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2018,
page_slug: "tyvar-behind-raw-pointer",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1827/// The `tyvar_behind_raw_pointer` lint detects raw pointer to an
1828 /// inference variable.
1829 ///
1830 /// ### Example
1831 ///
1832 /// ```rust,edition2015
1833 /// // edition 2015
1834 /// let data = std::ptr::null();
1835 /// let _ = &data as *const *const ();
1836 ///
1837 /// if data.is_null() {}
1838 /// ```
1839 ///
1840 /// {{produces}}
1841 ///
1842 /// ### Explanation
1843 ///
1844 /// This kind of inference was previously allowed, but with the future
1845 /// arrival of [arbitrary self types], this can introduce ambiguity. To
1846 /// resolve this, use an explicit type instead of relying on type
1847 /// inference.
1848 ///
1849 /// This is a [future-incompatible] lint to transition this to a hard
1850 /// error in the 2018 edition. See [issue #46906] for more details. This
1851 /// is currently a hard-error on the 2018 edition, and is "warn" by
1852 /// default in the 2015 edition.
1853 ///
1854 /// [arbitrary self types]: https://github.com/rust-lang/rust/issues/44874
1855 /// [issue #46906]: https://github.com/rust-lang/rust/issues/46906
1856 /// [future-incompatible]: ../index.md#future-incompatible-lints
1857pub TYVAR_BEHIND_RAW_POINTER,
1858 Warn,
1859"raw pointer to an inference variable",
1860 @future_incompatible = FutureIncompatibleInfo {
1861 reason: fcw!(EditionError 2018 "tyvar-behind-raw-pointer"),
1862 };
1863}18641865#[doc = r" The `elided_lifetimes_in_paths` lint detects the use of hidden"]
#[doc = r" lifetime parameters."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(elided_lifetimes_in_paths)]"]
#[doc = r" #![deny(warnings)]"]
#[doc = r" struct Foo<'a> {"]
#[doc = r" x: &'a u32"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn foo(x: &Foo) {"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Elided lifetime parameters can make it difficult to see at a glance"]
#[doc = r" that borrowing is occurring. This lint ensures that lifetime"]
#[doc = r" parameters are always explicitly stated, even if it is the `'_`"]
#[doc = r" [placeholder lifetime]."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because it has some known issues, and"#]
#[doc = r" may require a significant transition for old code."]
#[doc = r""]
#[doc =
r" [placeholder lifetime]: https://doc.rust-lang.org/reference/lifetime-elision.html#lifetime-elision-in-functions"]
pub static ELIDED_LIFETIMES_IN_PATHS: &crate::Lint =
&crate::Lint {
name: "ELIDED_LIFETIMES_IN_PATHS",
default_level: crate::Allow,
desc: "hidden lifetime parameters in types are deprecated",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1866/// The `elided_lifetimes_in_paths` lint detects the use of hidden
1867 /// lifetime parameters.
1868 ///
1869 /// ### Example
1870 ///
1871 /// ```rust,compile_fail
1872 /// #![deny(elided_lifetimes_in_paths)]
1873 /// #![deny(warnings)]
1874 /// struct Foo<'a> {
1875 /// x: &'a u32
1876 /// }
1877 ///
1878 /// fn foo(x: &Foo) {
1879 /// }
1880 /// ```
1881 ///
1882 /// {{produces}}
1883 ///
1884 /// ### Explanation
1885 ///
1886 /// Elided lifetime parameters can make it difficult to see at a glance
1887 /// that borrowing is occurring. This lint ensures that lifetime
1888 /// parameters are always explicitly stated, even if it is the `'_`
1889 /// [placeholder lifetime].
1890 ///
1891 /// This lint is "allow" by default because it has some known issues, and
1892 /// may require a significant transition for old code.
1893 ///
1894 /// [placeholder lifetime]: https://doc.rust-lang.org/reference/lifetime-elision.html#lifetime-elision-in-functions
1895pub ELIDED_LIFETIMES_IN_PATHS,
1896 Allow,
1897"hidden lifetime parameters in types are deprecated"
1898}18991900#[doc =
r" The `bare_trait_objects` lint suggests using `dyn Trait` for trait"]
#[doc = r" objects."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2018"]
#[doc = r" trait Trait { }"]
#[doc = r""]
#[doc = r" fn takes_trait_object(_: Box<Trait>) {"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Without the `dyn` indicator, it can be ambiguous or confusing when"]
#[doc =
r" reading code as to whether or not you are looking at a trait object."]
#[doc =
r" The `dyn` keyword makes it explicit, and adds a symmetry to contrast"]
#[doc = r" with [`impl Trait`]."]
#[doc = r""]
#[doc =
r" [`impl Trait`]: https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters"]
pub static BARE_TRAIT_OBJECTS: &crate::Lint =
&crate::Lint {
name: "BARE_TRAIT_OBJECTS",
default_level: crate::Warn,
desc: "suggest using `dyn Trait` for trait objects",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2021,
page_slug: "warnings-promoted-to-error",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1901/// The `bare_trait_objects` lint suggests using `dyn Trait` for trait
1902 /// objects.
1903 ///
1904 /// ### Example
1905 ///
1906 /// ```rust,edition2018
1907 /// trait Trait { }
1908 ///
1909 /// fn takes_trait_object(_: Box<Trait>) {
1910 /// }
1911 /// ```
1912 ///
1913 /// {{produces}}
1914 ///
1915 /// ### Explanation
1916 ///
1917 /// Without the `dyn` indicator, it can be ambiguous or confusing when
1918 /// reading code as to whether or not you are looking at a trait object.
1919 /// The `dyn` keyword makes it explicit, and adds a symmetry to contrast
1920 /// with [`impl Trait`].
1921 ///
1922 /// [`impl Trait`]: https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
1923pub BARE_TRAIT_OBJECTS,
1924 Warn,
1925"suggest using `dyn Trait` for trait objects",
1926 @future_incompatible = FutureIncompatibleInfo {
1927 reason: fcw!(EditionError 2021 "warnings-promoted-to-error"),
1928 };
1929}19301931#[doc = r" The `absolute_paths_not_starting_with_crate` lint detects fully"]
#[doc = r" qualified paths that start with a module name instead of `crate`,"]
#[doc = r" `self`, or an extern crate name"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2015,compile_fail"]
#[doc = r" #![deny(absolute_paths_not_starting_with_crate)]"]
#[doc = r""]
#[doc = r" mod foo {"]
#[doc = r" pub fn bar() {}"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" ::foo::bar();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Rust [editions] allow the language to evolve without breaking"]
#[doc =
r" backwards compatibility. This lint catches code that uses absolute"]
#[doc =
r" paths in the style of the 2015 edition. In the 2015 edition, absolute"]
#[doc =
r" paths (those starting with `::`) refer to either the crate root or an"]
#[doc =
r" external crate. In the 2018 edition it was changed so that they only"]
#[doc =
r" refer to external crates. The path prefix `crate::` should be used"]
#[doc = r" instead to reference items from the crate root."]
#[doc = r""]
#[doc = r" If you switch the compiler from the 2015 to 2018 edition without"]
#[doc =
r" updating the code, then it will fail to compile if the old style paths"]
#[doc = r" are used. You can manually change the paths to use the `crate::`"]
#[doc = r" prefix to transition to the 2018 edition."]
#[doc = r""]
#[doc =
r#" This lint solves the problem automatically. It is "allow" by default"#]
#[doc =
r" because the code is perfectly valid in the 2015 edition. The [`cargo"]
#[doc =
r#" fix`] tool with the `--edition` flag will switch this lint to "warn""#]
#[doc = r" and automatically apply the suggested fix from the compiler. This"]
#[doc =
r" provides a completely automated way to update old code to the 2018"]
#[doc = r" edition."]
#[doc = r""]
#[doc = r" [editions]: https://doc.rust-lang.org/edition-guide/"]
#[doc =
r" [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html"]
pub static ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE: &crate::Lint =
&crate::Lint {
name: "ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE",
default_level: crate::Allow,
desc: "fully qualified paths that start with a module name \
instead of `crate`, `self`, or an extern crate name",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2018,
page_slug: "path-changes",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1932/// The `absolute_paths_not_starting_with_crate` lint detects fully
1933 /// qualified paths that start with a module name instead of `crate`,
1934 /// `self`, or an extern crate name
1935 ///
1936 /// ### Example
1937 ///
1938 /// ```rust,edition2015,compile_fail
1939 /// #![deny(absolute_paths_not_starting_with_crate)]
1940 ///
1941 /// mod foo {
1942 /// pub fn bar() {}
1943 /// }
1944 ///
1945 /// fn main() {
1946 /// ::foo::bar();
1947 /// }
1948 /// ```
1949 ///
1950 /// {{produces}}
1951 ///
1952 /// ### Explanation
1953 ///
1954 /// Rust [editions] allow the language to evolve without breaking
1955 /// backwards compatibility. This lint catches code that uses absolute
1956 /// paths in the style of the 2015 edition. In the 2015 edition, absolute
1957 /// paths (those starting with `::`) refer to either the crate root or an
1958 /// external crate. In the 2018 edition it was changed so that they only
1959 /// refer to external crates. The path prefix `crate::` should be used
1960 /// instead to reference items from the crate root.
1961 ///
1962 /// If you switch the compiler from the 2015 to 2018 edition without
1963 /// updating the code, then it will fail to compile if the old style paths
1964 /// are used. You can manually change the paths to use the `crate::`
1965 /// prefix to transition to the 2018 edition.
1966 ///
1967 /// This lint solves the problem automatically. It is "allow" by default
1968 /// because the code is perfectly valid in the 2015 edition. The [`cargo
1969 /// fix`] tool with the `--edition` flag will switch this lint to "warn"
1970 /// and automatically apply the suggested fix from the compiler. This
1971 /// provides a completely automated way to update old code to the 2018
1972 /// edition.
1973 ///
1974 /// [editions]: https://doc.rust-lang.org/edition-guide/
1975 /// [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html
1976pub ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
1977 Allow,
1978"fully qualified paths that start with a module name \
1979 instead of `crate`, `self`, or an extern crate name",
1980 @future_incompatible = FutureIncompatibleInfo {
1981 reason: fcw!(EditionError 2018 "path-changes"),
1982 };
1983}19841985#[doc =
r" The `unstable_name_collisions` lint detects that you have used a name"]
#[doc = r" that the standard library plans to add in the future."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" trait MyIterator : Iterator {"]
#[doc =
r" // is_partitioned is an unstable method that already exists on the Iterator trait"]
#[doc = r" fn is_partitioned<P>(self, predicate: P) -> bool"]
#[doc = r" where"]
#[doc = r" Self: Sized,"]
#[doc = r" P: FnMut(Self::Item) -> bool,"]
#[doc = r" {true}"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl<T: ?Sized> MyIterator for T where T: Iterator { }"]
#[doc = r""]
#[doc = r" let x = vec![1, 2, 3];"]
#[doc = r" let _ = x.iter().is_partitioned(|_| true);"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" When new methods are added to traits in the standard library, they are"]
#[doc =
r#" usually added in an "unstable" form which is only available on the"#]
#[doc = r" [nightly channel] with a [`feature` attribute]. If there is any"]
#[doc =
r" preexisting code which extends a trait to have a method with the same"]
#[doc =
r" name, then the names will collide. In the future, when the method is"]
#[doc =
r" stabilized, this will cause an error due to the ambiguity. This lint"]
#[doc =
r" is an early-warning to let you know that there may be a collision in"]
#[doc = r" the future. This can be avoided by adding type annotations to"]
#[doc = r" disambiguate which trait method you intend to call, such as"]
#[doc =
r" `MyIterator::is_partitioned(my_iter, my_predicate)` or renaming or removing the method."]
#[doc = r""]
#[doc =
r" [nightly channel]: https://doc.rust-lang.org/book/appendix-07-nightly-rust.html"]
#[doc =
r" [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/"]
pub static UNSTABLE_NAME_COLLISIONS: &crate::Lint =
&crate::Lint {
name: "UNSTABLE_NAME_COLLISIONS",
default_level: crate::Warn,
desc: "detects name collision with an existing but unstable method",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::Custom("once this associated item is added to the standard library, \
the ambiguity may cause an error or change in behavior!",
crate::ReleaseFcw { issue_number: 48919 }),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
1986/// The `unstable_name_collisions` lint detects that you have used a name
1987 /// that the standard library plans to add in the future.
1988 ///
1989 /// ### Example
1990 ///
1991 /// ```rust
1992 /// trait MyIterator : Iterator {
1993 /// // is_partitioned is an unstable method that already exists on the Iterator trait
1994 /// fn is_partitioned<P>(self, predicate: P) -> bool
1995 /// where
1996 /// Self: Sized,
1997 /// P: FnMut(Self::Item) -> bool,
1998 /// {true}
1999 /// }
2000 ///
2001 /// impl<T: ?Sized> MyIterator for T where T: Iterator { }
2002 ///
2003 /// let x = vec![1, 2, 3];
2004 /// let _ = x.iter().is_partitioned(|_| true);
2005 /// ```
2006 ///
2007 /// {{produces}}
2008 ///
2009 /// ### Explanation
2010 ///
2011 /// When new methods are added to traits in the standard library, they are
2012 /// usually added in an "unstable" form which is only available on the
2013 /// [nightly channel] with a [`feature` attribute]. If there is any
2014 /// preexisting code which extends a trait to have a method with the same
2015 /// name, then the names will collide. In the future, when the method is
2016 /// stabilized, this will cause an error due to the ambiguity. This lint
2017 /// is an early-warning to let you know that there may be a collision in
2018 /// the future. This can be avoided by adding type annotations to
2019 /// disambiguate which trait method you intend to call, such as
2020 /// `MyIterator::is_partitioned(my_iter, my_predicate)` or renaming or removing the method.
2021 ///
2022 /// [nightly channel]: https://doc.rust-lang.org/book/appendix-07-nightly-rust.html
2023 /// [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/
2024pub UNSTABLE_NAME_COLLISIONS,
2025 Warn,
2026"detects name collision with an existing but unstable method",
2027 @future_incompatible = FutureIncompatibleInfo {
2028 reason: fcw!(
2029"once this associated item is added to the standard library, \
2030 the ambiguity may cause an error or change in behavior!"
2031#48919
2032),
2033// Note: this item represents future incompatibility of all unstable functions in the
2034 // standard library, and thus should never be removed or changed to an error.
2035};
2036}20372038#[doc =
r" The `irrefutable_let_patterns` lint detects [irrefutable patterns]"]
#[doc = r" in [`if let`]s, [`while let`]s, and `if let` guards."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" if let _ = 123 {"]
#[doc = r#" println!("always runs!");"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" There usually isn't a reason to have an irrefutable pattern in an"]
#[doc =
r" `if let` or `while let` statement, because the pattern will always match"]
#[doc =
r" successfully. A [`let`] or [`loop`] statement will suffice. However,"]
#[doc =
r" when generating code with a macro, forbidding irrefutable patterns"]
#[doc = r" would require awkward workarounds in situations where the macro"]
#[doc = r" doesn't know if the pattern is refutable or not. This lint allows"]
#[doc =
r" macros to accept this form, while alerting for a possibly incorrect"]
#[doc = r" use in normal code."]
#[doc = r""]
#[doc = r" See [RFC 2086] for more details."]
#[doc = r""]
#[doc =
r" [irrefutable patterns]: https://doc.rust-lang.org/reference/patterns.html#refutability"]
#[doc =
r" [`if let`]: https://doc.rust-lang.org/reference/expressions/if-expr.html#if-let-expressions"]
#[doc =
r" [`while let`]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#predicate-pattern-loops"]
#[doc =
r" [`let`]: https://doc.rust-lang.org/reference/statements.html#let-statements"]
#[doc =
r" [`loop`]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#infinite-loops"]
#[doc =
r" [RFC 2086]: https://github.com/rust-lang/rfcs/blob/master/text/2086-allow-if-let-irrefutables.md"]
pub static IRREFUTABLE_LET_PATTERNS: &crate::Lint =
&crate::Lint {
name: "IRREFUTABLE_LET_PATTERNS",
default_level: crate::Warn,
desc: "detects irrefutable patterns in `if let` and `while let` statements",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2039/// The `irrefutable_let_patterns` lint detects [irrefutable patterns]
2040 /// in [`if let`]s, [`while let`]s, and `if let` guards.
2041 ///
2042 /// ### Example
2043 ///
2044 /// ```rust
2045 /// if let _ = 123 {
2046 /// println!("always runs!");
2047 /// }
2048 /// ```
2049 ///
2050 /// {{produces}}
2051 ///
2052 /// ### Explanation
2053 ///
2054 /// There usually isn't a reason to have an irrefutable pattern in an
2055 /// `if let` or `while let` statement, because the pattern will always match
2056 /// successfully. A [`let`] or [`loop`] statement will suffice. However,
2057 /// when generating code with a macro, forbidding irrefutable patterns
2058 /// would require awkward workarounds in situations where the macro
2059 /// doesn't know if the pattern is refutable or not. This lint allows
2060 /// macros to accept this form, while alerting for a possibly incorrect
2061 /// use in normal code.
2062 ///
2063 /// See [RFC 2086] for more details.
2064 ///
2065 /// [irrefutable patterns]: https://doc.rust-lang.org/reference/patterns.html#refutability
2066 /// [`if let`]: https://doc.rust-lang.org/reference/expressions/if-expr.html#if-let-expressions
2067 /// [`while let`]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#predicate-pattern-loops
2068 /// [`let`]: https://doc.rust-lang.org/reference/statements.html#let-statements
2069 /// [`loop`]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#infinite-loops
2070 /// [RFC 2086]: https://github.com/rust-lang/rfcs/blob/master/text/2086-allow-if-let-irrefutables.md
2071pub IRREFUTABLE_LET_PATTERNS,
2072 Warn,
2073"detects irrefutable patterns in `if let` and `while let` statements"
2074}20752076#[doc = r" The `unused_labels` lint detects [labels] that are never used."]
#[doc = r""]
#[doc =
r" [labels]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#loop-labels"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,no_run"]
#[doc = r" 'unused_label: loop {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unused labels may signal a mistake or unfinished code. To silence the"]
#[doc =
r" warning for the individual label, prefix it with an underscore such as"]
#[doc = r" `'_my_label:`."]
pub static UNUSED_LABELS: &crate::Lint =
&crate::Lint {
name: "UNUSED_LABELS",
default_level: crate::Warn,
desc: "detects labels that are never used",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2077/// The `unused_labels` lint detects [labels] that are never used.
2078 ///
2079 /// [labels]: https://doc.rust-lang.org/reference/expressions/loop-expr.html#loop-labels
2080 ///
2081 /// ### Example
2082 ///
2083 /// ```rust,no_run
2084 /// 'unused_label: loop {}
2085 /// ```
2086 ///
2087 /// {{produces}}
2088 ///
2089 /// ### Explanation
2090 ///
2091 /// Unused labels may signal a mistake or unfinished code. To silence the
2092 /// warning for the individual label, prefix it with an underscore such as
2093 /// `'_my_label:`.
2094pub UNUSED_LABELS,
2095 Warn,
2096"detects labels that are never used"
2097}20982099#[doc =
r" The `proc_macro_derive_resolution_fallback` lint detects proc macro"]
#[doc = r" derives using inaccessible names from parent modules."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (proc-macro)"]
#[doc = r" // foo.rs"]
#[doc = r#" #![crate_type = "proc-macro"]"#]
#[doc = r""]
#[doc = r" extern crate proc_macro;"]
#[doc = r""]
#[doc = r" use proc_macro::*;"]
#[doc = r""]
#[doc = r" #[proc_macro_derive(Foo)]"]
#[doc = r" pub fn foo1(a: TokenStream) -> TokenStream {"]
#[doc = r" drop(a);"]
#[doc =
r#" "mod __bar { static mut BAR: Option<Something> = None; }".parse().unwrap()"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs-dependency)"]
#[doc = r" // bar.rs"]
#[doc = r" #[macro_use]"]
#[doc = r" extern crate foo;"]
#[doc = r""]
#[doc = r" struct Something;"]
#[doc = r""]
#[doc = r" #[derive(Foo)]"]
#[doc = r" struct Another;"]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: cannot find type `Something` in this scope"]
#[doc = r" --> src/main.rs:8:10"]
#[doc = r" |"]
#[doc = r" 8 | #[derive(Foo)]"]
#[doc =
r" | ^^^ names from parent modules are not accessible without an explicit import"]
#[doc = r" |"]
#[doc =
r" = note: `#[warn(proc_macro_derive_resolution_fallback)]` on by default"]
#[doc =
r" = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!"]
#[doc =
r" = note: for more information, see issue #50504 <https://github.com/rust-lang/rust/issues/50504>"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" If a proc-macro generates a module, the compiler unintentionally"]
#[doc = r" allowed items in that module to refer to items in the crate root"]
#[doc = r" without importing them. This is a [future-incompatible] lint to"]
#[doc =
r" transition this to a hard error in the future. See [issue #50504] for"]
#[doc = r" more details."]
#[doc = r""]
#[doc = r" [issue #50504]: https://github.com/rust-lang/rust/issues/50504"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static PROC_MACRO_DERIVE_RESOLUTION_FALLBACK: &crate::Lint =
&crate::Lint {
name: "PROC_MACRO_DERIVE_RESOLUTION_FALLBACK",
default_level: crate::Deny,
desc: "detects proc macro derives using inaccessible names from parent modules",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 83583,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2100/// The `proc_macro_derive_resolution_fallback` lint detects proc macro
2101 /// derives using inaccessible names from parent modules.
2102 ///
2103 /// ### Example
2104 ///
2105 /// ```rust,ignore (proc-macro)
2106 /// // foo.rs
2107 /// #![crate_type = "proc-macro"]
2108 ///
2109 /// extern crate proc_macro;
2110 ///
2111 /// use proc_macro::*;
2112 ///
2113 /// #[proc_macro_derive(Foo)]
2114 /// pub fn foo1(a: TokenStream) -> TokenStream {
2115 /// drop(a);
2116 /// "mod __bar { static mut BAR: Option<Something> = None; }".parse().unwrap()
2117 /// }
2118 /// ```
2119 ///
2120 /// ```rust,ignore (needs-dependency)
2121 /// // bar.rs
2122 /// #[macro_use]
2123 /// extern crate foo;
2124 ///
2125 /// struct Something;
2126 ///
2127 /// #[derive(Foo)]
2128 /// struct Another;
2129 ///
2130 /// fn main() {}
2131 /// ```
2132 ///
2133 /// This will produce:
2134 ///
2135 /// ```text
2136 /// warning: cannot find type `Something` in this scope
2137 /// --> src/main.rs:8:10
2138 /// |
2139 /// 8 | #[derive(Foo)]
2140 /// | ^^^ names from parent modules are not accessible without an explicit import
2141 /// |
2142 /// = note: `#[warn(proc_macro_derive_resolution_fallback)]` on by default
2143 /// = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2144 /// = note: for more information, see issue #50504 <https://github.com/rust-lang/rust/issues/50504>
2145 /// ```
2146 ///
2147 /// ### Explanation
2148 ///
2149 /// If a proc-macro generates a module, the compiler unintentionally
2150 /// allowed items in that module to refer to items in the crate root
2151 /// without importing them. This is a [future-incompatible] lint to
2152 /// transition this to a hard error in the future. See [issue #50504] for
2153 /// more details.
2154 ///
2155 /// [issue #50504]: https://github.com/rust-lang/rust/issues/50504
2156 /// [future-incompatible]: ../index.md#future-incompatible-lints
2157pub PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
2158 Deny,
2159"detects proc macro derives using inaccessible names from parent modules",
2160 @future_incompatible = FutureIncompatibleInfo {
2161 reason: fcw!(FutureReleaseError #83583),
2162 report_in_deps: true,
2163 };
2164}21652166#[doc =
r" The `macro_use_extern_crate` lint detects the use of the [`macro_use` attribute]."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs extern crate)"]
#[doc = r" #![deny(macro_use_extern_crate)]"]
#[doc = r""]
#[doc = r" #[macro_use]"]
#[doc = r" extern crate serde_json;"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" let _ = json!{{}};"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r" error: applying the `#[macro_use]` attribute to an `extern crate` item is deprecated"]
#[doc = r" --> src/main.rs:3:1"]
#[doc = r" |"]
#[doc = r" 3 | #[macro_use]"]
#[doc = r" | ^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc =
r" = help: remove it and import macros at use sites with a `use` item instead"]
#[doc = r" note: the lint level is defined here"]
#[doc = r" --> src/main.rs:1:9"]
#[doc = r" |"]
#[doc = r" 1 | #![deny(macro_use_extern_crate)]"]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" The [`macro_use` attribute] on an [`extern crate`] item causes"]
#[doc =
r" macros in that external crate to be brought into the prelude of the"]
#[doc =
r" crate, making the macros in scope everywhere. As part of the efforts"]
#[doc =
r" to simplify handling of dependencies in the [2018 edition], the use of"]
#[doc =
r" `extern crate` is being phased out. To bring macros from extern crates"]
#[doc = r" into scope, it is recommended to use a [`use` import]."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default because this is a stylistic choice"#]
#[doc =
r" that has not been settled, see [issue #52043] for more information."]
#[doc = r""]
#[doc =
r" [`macro_use` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#the-macro_use-attribute"]
#[doc =
r" [`use` import]: https://doc.rust-lang.org/reference/items/use-declarations.html"]
#[doc = r" [issue #52043]: https://github.com/rust-lang/rust/issues/52043"]
pub static MACRO_USE_EXTERN_CRATE: &crate::Lint =
&crate::Lint {
name: "MACRO_USE_EXTERN_CRATE",
default_level: crate::Allow,
desc: "the `#[macro_use]` attribute is now deprecated in favor of using macros \
via the module system",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2167/// The `macro_use_extern_crate` lint detects the use of the [`macro_use` attribute].
2168 ///
2169 /// ### Example
2170 ///
2171 /// ```rust,ignore (needs extern crate)
2172 /// #![deny(macro_use_extern_crate)]
2173 ///
2174 /// #[macro_use]
2175 /// extern crate serde_json;
2176 ///
2177 /// fn main() {
2178 /// let _ = json!{{}};
2179 /// }
2180 /// ```
2181 ///
2182 /// This will produce:
2183 ///
2184 /// ```text
2185 /// error: applying the `#[macro_use]` attribute to an `extern crate` item is deprecated
2186 /// --> src/main.rs:3:1
2187 /// |
2188 /// 3 | #[macro_use]
2189 /// | ^^^^^^^^^^^^
2190 /// |
2191 /// = help: remove it and import macros at use sites with a `use` item instead
2192 /// note: the lint level is defined here
2193 /// --> src/main.rs:1:9
2194 /// |
2195 /// 1 | #![deny(macro_use_extern_crate)]
2196 /// | ^^^^^^^^^^^^^^^^^^^^^^
2197 /// ```
2198 ///
2199 /// ### Explanation
2200 ///
2201 /// The [`macro_use` attribute] on an [`extern crate`] item causes
2202 /// macros in that external crate to be brought into the prelude of the
2203 /// crate, making the macros in scope everywhere. As part of the efforts
2204 /// to simplify handling of dependencies in the [2018 edition], the use of
2205 /// `extern crate` is being phased out. To bring macros from extern crates
2206 /// into scope, it is recommended to use a [`use` import].
2207 ///
2208 /// This lint is "allow" by default because this is a stylistic choice
2209 /// that has not been settled, see [issue #52043] for more information.
2210 ///
2211 /// [`macro_use` attribute]: https://doc.rust-lang.org/reference/macros-by-example.html#the-macro_use-attribute
2212 /// [`use` import]: https://doc.rust-lang.org/reference/items/use-declarations.html
2213 /// [issue #52043]: https://github.com/rust-lang/rust/issues/52043
2214pub MACRO_USE_EXTERN_CRATE,
2215 Allow,
2216"the `#[macro_use]` attribute is now deprecated in favor of using macros \
2217 via the module system"
2218}22192220#[doc =
r" The `macro_expanded_macro_exports_accessed_by_absolute_paths` lint"]
#[doc =
r" detects macro-expanded [`macro_export`] macros from the current crate"]
#[doc = r" that cannot be referred to by absolute paths."]
#[doc = r""]
#[doc =
r" [`macro_export`]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" macro_rules! define_exported {"]
#[doc = r" () => {"]
#[doc = r" #[macro_export]"]
#[doc = r" macro_rules! exported {"]
#[doc = r" () => {};"]
#[doc = r" }"]
#[doc = r" };"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" define_exported!();"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" crate::exported!();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" The intent is that all macros marked with the `#[macro_export]`"]
#[doc =
r" attribute are made available in the root of the crate. However, when a"]
#[doc =
r" `macro_rules!` definition is generated by another macro, the macro"]
#[doc = r" expansion is unable to uphold this rule. This is a"]
#[doc =
r" [future-incompatible] lint to transition this to a hard error in the"]
#[doc = r" future. See [issue #53495] for more details."]
#[doc = r""]
#[doc = r" [issue #53495]: https://github.com/rust-lang/rust/issues/53495"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS:
&crate::Lint =
&crate::Lint {
name: "MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS",
default_level: crate::Deny,
desc: "macro-expanded `macro_export` macros from the current crate \
cannot be referred to by absolute paths",
is_externally_loaded: false,
crate_level_only: true,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 52234,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2221/// The `macro_expanded_macro_exports_accessed_by_absolute_paths` lint
2222 /// detects macro-expanded [`macro_export`] macros from the current crate
2223 /// that cannot be referred to by absolute paths.
2224 ///
2225 /// [`macro_export`]: https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope
2226 ///
2227 /// ### Example
2228 ///
2229 /// ```rust,compile_fail
2230 /// macro_rules! define_exported {
2231 /// () => {
2232 /// #[macro_export]
2233 /// macro_rules! exported {
2234 /// () => {};
2235 /// }
2236 /// };
2237 /// }
2238 ///
2239 /// define_exported!();
2240 ///
2241 /// fn main() {
2242 /// crate::exported!();
2243 /// }
2244 /// ```
2245 ///
2246 /// {{produces}}
2247 ///
2248 /// ### Explanation
2249 ///
2250 /// The intent is that all macros marked with the `#[macro_export]`
2251 /// attribute are made available in the root of the crate. However, when a
2252 /// `macro_rules!` definition is generated by another macro, the macro
2253 /// expansion is unable to uphold this rule. This is a
2254 /// [future-incompatible] lint to transition this to a hard error in the
2255 /// future. See [issue #53495] for more details.
2256 ///
2257 /// [issue #53495]: https://github.com/rust-lang/rust/issues/53495
2258 /// [future-incompatible]: ../index.md#future-incompatible-lints
2259pub MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
2260 Deny,
2261"macro-expanded `macro_export` macros from the current crate \
2262 cannot be referred to by absolute paths",
2263 @future_incompatible = FutureIncompatibleInfo {
2264 reason: fcw!(FutureReleaseError #52234),
2265 report_in_deps: true,
2266 };
2267 crate_level_only
2268}22692270#[doc = r" The `explicit_outlives_requirements` lint detects unnecessary"]
#[doc = r" lifetime bounds that can be inferred."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![allow(unused)]"]
#[doc = r" #![deny(explicit_outlives_requirements)]"]
#[doc = r" #![deny(warnings)]"]
#[doc = r""]
#[doc = r" struct SharedRef<'a, T>"]
#[doc = r" where"]
#[doc = r" T: 'a,"]
#[doc = r" {"]
#[doc = r" data: &'a T,"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" If a struct, enum or union contains a reference, such as `&'a T`,"]
#[doc = r" the compiler requires that `T` outlives the lifetime `'a`."]
#[doc =
r" This historically required writing an explicit lifetime bound to indicate this requirement."]
#[doc =
r" However, this can be overly explicit, causing clutter and unnecessary complexity."]
#[doc =
r" The language was changed to automatically infer some classes of lifetime bounds"]
#[doc = r" if they are not specified."]
#[doc =
r" Specifically, if a struct, enum or union contains a reference, directly or indirectly,"]
#[doc =
r" to `T` with lifetime `'x` and `'x` refers to a lifetime parameter,"]
#[doc = r" then it will infer that `T: 'x` is a requirement."]
#[doc = r""]
#[doc = r" See [RFC 2093] for more details."]
#[doc = r""]
#[doc = r" > [!NOTE]"]
#[doc =
r" > This lint intentionally doesn't get emitted for explicit outlives-bounds on type"]
#[doc =
r" > parameters that aren't bounded by `Sized` (unless they're higher-ranked) since unlike"]
#[doc =
r" > implicit outlives-bounds these may affect the implicit lifetime bound of trait object"]
#[doc =
r" > types that are passed as arguments to the overarching struct, enum or union."]
#[doc = r" >"]
#[doc =
r" > Rephrased, they participate in [trait object lifetime defaulting][TOLD]."]
#[doc = r" >"]
#[doc =
r" > Consider the following piece of code where removing bound `T: 'a` would lead to a lifetime"]
#[doc = r" > error in function `scope`:"]
#[doc = r" >"]
#[doc = r" > ```rust,no_run"]
#[doc = r" > struct Ref<'a, T: ?Sized + 'a>(&'a T);"]
#[doc = r" >"]
#[doc = r" > fn scope() {"]
#[doc = r" > let buf = String::new();"]
#[doc = r" > let str = buf.as_str();"]
#[doc = r" > render(Ref(&str));"]
#[doc = r" > }"]
#[doc = r" >"]
#[doc = r" > fn render(_: Ref<dyn std::fmt::Display>) {}"]
#[doc = r" > ```"]
#[doc = r" >"]
#[doc =
r" > Due to the explicit outlives-bound the function `render` above is equivalent to:"]
#[doc = r" >"]
#[doc = r" > ```rust,ignore (incomplete)"]
#[doc = r" > fn render<'r>(_: Ref<'r, dyn std::fmt::Display + 'r>) {}"]
#[doc = r" > ```"]
#[doc = r" >"]
#[doc =
r" > If it wasn't for that explicit bound then the function would mean the following instead:"]
#[doc = r" >"]
#[doc = r" > ```rust,ignore (incomplete)"]
#[doc = r" > fn render<'r>(_: Ref<'r, dyn std::fmt::Display + 'static>) {}"]
#[doc = r" > ```"]
#[doc = r""]
#[doc =
r" [RFC 2093]: https://github.com/rust-lang/rfcs/blob/master/text/2093-infer-outlives.md"]
#[doc =
r" [TOLD]: https://doc.rust-lang.org/reference/lifetime-elision.html#default-trait-object-lifetimes"]
pub static EXPLICIT_OUTLIVES_REQUIREMENTS: &crate::Lint =
&crate::Lint {
name: "EXPLICIT_OUTLIVES_REQUIREMENTS",
default_level: crate::Allow,
desc: "outlives requirements can be inferred",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2271/// The `explicit_outlives_requirements` lint detects unnecessary
2272 /// lifetime bounds that can be inferred.
2273 ///
2274 /// ### Example
2275 ///
2276 /// ```rust,compile_fail
2277 /// # #![allow(unused)]
2278 /// #![deny(explicit_outlives_requirements)]
2279 /// #![deny(warnings)]
2280 ///
2281 /// struct SharedRef<'a, T>
2282 /// where
2283 /// T: 'a,
2284 /// {
2285 /// data: &'a T,
2286 /// }
2287 /// ```
2288 ///
2289 /// {{produces}}
2290 ///
2291 /// ### Explanation
2292 ///
2293 /// If a struct, enum or union contains a reference, such as `&'a T`,
2294 /// the compiler requires that `T` outlives the lifetime `'a`.
2295 /// This historically required writing an explicit lifetime bound to indicate this requirement.
2296 /// However, this can be overly explicit, causing clutter and unnecessary complexity.
2297 /// The language was changed to automatically infer some classes of lifetime bounds
2298 /// if they are not specified.
2299 /// Specifically, if a struct, enum or union contains a reference, directly or indirectly,
2300 /// to `T` with lifetime `'x` and `'x` refers to a lifetime parameter,
2301 /// then it will infer that `T: 'x` is a requirement.
2302 ///
2303 /// See [RFC 2093] for more details.
2304 ///
2305 /// > [!NOTE]
2306 /// > This lint intentionally doesn't get emitted for explicit outlives-bounds on type
2307 /// > parameters that aren't bounded by `Sized` (unless they're higher-ranked) since unlike
2308 /// > implicit outlives-bounds these may affect the implicit lifetime bound of trait object
2309 /// > types that are passed as arguments to the overarching struct, enum or union.
2310 /// >
2311 /// > Rephrased, they participate in [trait object lifetime defaulting][TOLD].
2312 /// >
2313 /// > Consider the following piece of code where removing bound `T: 'a` would lead to a lifetime
2314 /// > error in function `scope`:
2315 /// >
2316 /// > ```rust,no_run
2317 /// > struct Ref<'a, T: ?Sized + 'a>(&'a T);
2318 /// >
2319 /// > fn scope() {
2320 /// > let buf = String::new();
2321 /// > let str = buf.as_str();
2322 /// > render(Ref(&str));
2323 /// > }
2324 /// >
2325 /// > fn render(_: Ref<dyn std::fmt::Display>) {}
2326 /// > ```
2327 /// >
2328 /// > Due to the explicit outlives-bound the function `render` above is equivalent to:
2329 /// >
2330 /// > ```rust,ignore (incomplete)
2331 /// > fn render<'r>(_: Ref<'r, dyn std::fmt::Display + 'r>) {}
2332 /// > ```
2333 /// >
2334 /// > If it wasn't for that explicit bound then the function would mean the following instead:
2335 /// >
2336 /// > ```rust,ignore (incomplete)
2337 /// > fn render<'r>(_: Ref<'r, dyn std::fmt::Display + 'static>) {}
2338 /// > ```
2339 ///
2340 /// [RFC 2093]: https://github.com/rust-lang/rfcs/blob/master/text/2093-infer-outlives.md
2341 /// [TOLD]: https://doc.rust-lang.org/reference/lifetime-elision.html#default-trait-object-lifetimes
2342pub EXPLICIT_OUTLIVES_REQUIREMENTS,
2343 Allow,
2344"outlives requirements can be inferred"
2345}23462347#[doc =
r" The `deprecated_in_future` lint is internal to rustc and should not be"]
#[doc = r" used by user code."]
#[doc = r""]
#[doc =
r" This lint is only enabled in the standard library. It works with the"]
#[doc =
r" use of `#[deprecated]` with a `since` field of a version in the future."]
#[doc =
r" This allows something to be marked as deprecated in a future version,"]
#[doc =
r" and then this lint will ensure that the item is no longer used in the"]
#[doc =
r" standard library. See the [stability documentation] for more details."]
#[doc = r""]
#[doc =
r" [stability documentation]: https://rustc-dev-guide.rust-lang.org/stability.html#deprecated"]
pub static DEPRECATED_IN_FUTURE: &crate::Lint =
&crate::Lint {
name: "DEPRECATED_IN_FUTURE",
default_level: crate::Allow,
desc: "detects use of items that will be deprecated in a future version",
is_externally_loaded: false,
report_in_external_macro: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2348/// The `deprecated_in_future` lint is internal to rustc and should not be
2349 /// used by user code.
2350 ///
2351 /// This lint is only enabled in the standard library. It works with the
2352 /// use of `#[deprecated]` with a `since` field of a version in the future.
2353 /// This allows something to be marked as deprecated in a future version,
2354 /// and then this lint will ensure that the item is no longer used in the
2355 /// standard library. See the [stability documentation] for more details.
2356 ///
2357 /// [stability documentation]: https://rustc-dev-guide.rust-lang.org/stability.html#deprecated
2358pub DEPRECATED_IN_FUTURE,
2359 Allow,
2360"detects use of items that will be deprecated in a future version",
2361 report_in_external_macro
2362}23632364#[doc = r" The `ambiguous_associated_items` lint detects ambiguity between"]
#[doc = r" [associated items] and [enum variants]."]
#[doc = r""]
#[doc =
r" [associated items]: https://doc.rust-lang.org/reference/items/associated-items.html"]
#[doc =
r" [enum variants]: https://doc.rust-lang.org/reference/items/enumerations.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" enum E {"]
#[doc = r" V"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" trait Tr {"]
#[doc = r" type V;"]
#[doc = r" fn foo() -> Self::V;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl Tr for E {"]
#[doc = r" type V = u8;"]
#[doc =
r" // `Self::V` is ambiguous because it may refer to the associated type or"]
#[doc = r" // the enum variant."]
#[doc = r" fn foo() -> Self::V { 0 }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Previous versions of Rust did not allow accessing enum variants"]
#[doc =
r" through [type aliases]. When this ability was added (see [RFC 2338]), this"]
#[doc = r" introduced some situations where it can be ambiguous what a type"]
#[doc = r" was referring to."]
#[doc = r""]
#[doc =
r" To fix this ambiguity, you should use a [qualified path] to explicitly"]
#[doc = r" state which type to use. For example, in the above example the"]
#[doc = r" function can be written as `fn f() -> <Self as Tr>::V { 0 }` to"]
#[doc = r" specifically refer to the associated type."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a hard"]
#[doc = r" error in the future. See [issue #57644] for more details."]
#[doc = r""]
#[doc = r" [issue #57644]: https://github.com/rust-lang/rust/issues/57644"]
#[doc =
r" [type aliases]: https://doc.rust-lang.org/reference/items/type-aliases.html#type-aliases"]
#[doc =
r" [RFC 2338]: https://github.com/rust-lang/rfcs/blob/master/text/2338-type-alias-enum-variants.md"]
#[doc =
r" [qualified path]: https://doc.rust-lang.org/reference/paths.html#qualified-paths"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static AMBIGUOUS_ASSOCIATED_ITEMS: &crate::Lint =
&crate::Lint {
name: "AMBIGUOUS_ASSOCIATED_ITEMS",
default_level: crate::Deny,
desc: "ambiguous associated items",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 57644,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2365/// The `ambiguous_associated_items` lint detects ambiguity between
2366 /// [associated items] and [enum variants].
2367 ///
2368 /// [associated items]: https://doc.rust-lang.org/reference/items/associated-items.html
2369 /// [enum variants]: https://doc.rust-lang.org/reference/items/enumerations.html
2370 ///
2371 /// ### Example
2372 ///
2373 /// ```rust,compile_fail
2374 /// enum E {
2375 /// V
2376 /// }
2377 ///
2378 /// trait Tr {
2379 /// type V;
2380 /// fn foo() -> Self::V;
2381 /// }
2382 ///
2383 /// impl Tr for E {
2384 /// type V = u8;
2385 /// // `Self::V` is ambiguous because it may refer to the associated type or
2386 /// // the enum variant.
2387 /// fn foo() -> Self::V { 0 }
2388 /// }
2389 /// ```
2390 ///
2391 /// {{produces}}
2392 ///
2393 /// ### Explanation
2394 ///
2395 /// Previous versions of Rust did not allow accessing enum variants
2396 /// through [type aliases]. When this ability was added (see [RFC 2338]), this
2397 /// introduced some situations where it can be ambiguous what a type
2398 /// was referring to.
2399 ///
2400 /// To fix this ambiguity, you should use a [qualified path] to explicitly
2401 /// state which type to use. For example, in the above example the
2402 /// function can be written as `fn f() -> <Self as Tr>::V { 0 }` to
2403 /// specifically refer to the associated type.
2404 ///
2405 /// This is a [future-incompatible] lint to transition this to a hard
2406 /// error in the future. See [issue #57644] for more details.
2407 ///
2408 /// [issue #57644]: https://github.com/rust-lang/rust/issues/57644
2409 /// [type aliases]: https://doc.rust-lang.org/reference/items/type-aliases.html#type-aliases
2410 /// [RFC 2338]: https://github.com/rust-lang/rfcs/blob/master/text/2338-type-alias-enum-variants.md
2411 /// [qualified path]: https://doc.rust-lang.org/reference/paths.html#qualified-paths
2412 /// [future-incompatible]: ../index.md#future-incompatible-lints
2413pub AMBIGUOUS_ASSOCIATED_ITEMS,
2414 Deny,
2415"ambiguous associated items",
2416 @future_incompatible = FutureIncompatibleInfo {
2417 reason: fcw!(FutureReleaseError #57644),
2418 };
2419}24202421#[doc = r" The `inline_no_sanitize` lint detects incompatible use of"]
#[doc =
r#" [`#[inline(always)]`][inline] and [`#[sanitize(xyz = "off")]`][sanitize]."#]
#[doc = r""]
#[doc =
r" [inline]: https://doc.rust-lang.org/reference/attributes/codegen.html#the-inline-attribute"]
#[doc =
r" [sanitize]: https://doc.rust-lang.org/nightly/unstable-book/language-features/no-sanitize.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![feature(sanitize)]"]
#[doc = r""]
#[doc = r" #[inline(always)]"]
#[doc = r#" #[sanitize(address = "off")]"#]
#[doc = r" fn x() {}"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" x()"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The use of the [`#[inline(always)]`][inline] attribute prevents the"]
#[doc =
r#" the [`#[sanitize(xyz = "off")]`][sanitize] attribute from working."#]
#[doc = r" Consider temporarily removing `inline` attribute."]
pub static INLINE_NO_SANITIZE: &crate::Lint =
&crate::Lint {
name: "INLINE_NO_SANITIZE",
default_level: crate::Warn,
desc: r#"detects incompatible use of `#[inline(always)]` and `#[sanitize(... = "off")]`"#,
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2422/// The `inline_no_sanitize` lint detects incompatible use of
2423 /// [`#[inline(always)]`][inline] and [`#[sanitize(xyz = "off")]`][sanitize].
2424 ///
2425 /// [inline]: https://doc.rust-lang.org/reference/attributes/codegen.html#the-inline-attribute
2426 /// [sanitize]: https://doc.rust-lang.org/nightly/unstable-book/language-features/no-sanitize.html
2427 ///
2428 /// ### Example
2429 ///
2430 /// ```rust
2431 /// #![feature(sanitize)]
2432 ///
2433 /// #[inline(always)]
2434 /// #[sanitize(address = "off")]
2435 /// fn x() {}
2436 ///
2437 /// fn main() {
2438 /// x()
2439 /// }
2440 /// ```
2441 ///
2442 /// {{produces}}
2443 ///
2444 /// ### Explanation
2445 ///
2446 /// The use of the [`#[inline(always)]`][inline] attribute prevents the
2447 /// the [`#[sanitize(xyz = "off")]`][sanitize] attribute from working.
2448 /// Consider temporarily removing `inline` attribute.
2449pub INLINE_NO_SANITIZE,
2450 Warn,
2451r#"detects incompatible use of `#[inline(always)]` and `#[sanitize(... = "off")]`"#,
2452}24532454#[doc = r" The `rtsan_nonblocking_async` lint detects incompatible use of"]
#[doc =
r#" [`#[sanitize(realtime = "nonblocking")]`][sanitize] on async functions."#]
#[doc = r""]
#[doc =
r" [sanitize]: https://doc.rust-lang.org/nightly/unstable-book/language-features/no-sanitize.html"]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,no_run"]
#[doc = r" #![feature(sanitize)]"]
#[doc = r""]
#[doc = r#" #[sanitize(realtime = "nonblocking")]"#]
#[doc = r" async fn x() {}"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" x();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The sanitizer only considers the async function body nonblocking. The executor, which runs on"]
#[doc =
r" every `.await` point can run non-realtime code, without the sanitizer catching it."]
pub static RTSAN_NONBLOCKING_ASYNC: &crate::Lint =
&crate::Lint {
name: "RTSAN_NONBLOCKING_ASYNC",
default_level: crate::Warn,
desc: r#"detects incompatible uses of `#[sanitize(realtime = "nonblocking")]` on async functions"#,
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2455/// The `rtsan_nonblocking_async` lint detects incompatible use of
2456 /// [`#[sanitize(realtime = "nonblocking")]`][sanitize] on async functions.
2457 ///
2458 /// [sanitize]: https://doc.rust-lang.org/nightly/unstable-book/language-features/no-sanitize.html
2459 /// ### Example
2460 ///
2461 /// ```rust,no_run
2462 /// #![feature(sanitize)]
2463 ///
2464 /// #[sanitize(realtime = "nonblocking")]
2465 /// async fn x() {}
2466 ///
2467 /// fn main() {
2468 /// x();
2469 /// }
2470 /// ```
2471 ///
2472 /// {{produces}}
2473 ///
2474 /// ### Explanation
2475 ///
2476 /// The sanitizer only considers the async function body nonblocking. The executor, which runs on
2477 /// every `.await` point can run non-realtime code, without the sanitizer catching it.
2478pub RTSAN_NONBLOCKING_ASYNC,
2479 Warn,
2480r#"detects incompatible uses of `#[sanitize(realtime = "nonblocking")]` on async functions"#,
2481}24822483#[doc =
r" The `asm_sub_register` lint detects using only a subset of a register"]
#[doc = r" for inline asm inputs."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (fails on non-x86_64)"]
#[doc = r#" #[cfg(target_arch="x86_64")]"#]
#[doc = r" use std::arch::asm;"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r#" #[cfg(target_arch="x86_64")]"#]
#[doc = r" unsafe {"]
#[doc = r#" asm!("mov {0}, {0}", in(reg) 0i16);"#]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: formatting may not be suitable for sub-register argument"]
#[doc = r" --> src/main.rs:7:19"]
#[doc = r" |"]
#[doc = r#" 7 | asm!("mov {0}, {0}", in(reg) 0i16);"#]
#[doc = r" | ^^^ ^^^ ---- for this argument"]
#[doc = r" |"]
#[doc = r" = note: `#[warn(asm_sub_register)]` on by default"]
#[doc =
r" = help: use the `x` modifier to have the register formatted as `ax`"]
#[doc =
r" = help: or use the `r` modifier to keep the default formatting of `rax`"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Registers on some architectures can use different names to refer to a"]
#[doc =
r" subset of the register. By default, the compiler will use the name for"]
#[doc =
r" the full register size. To explicitly use a subset of the register,"]
#[doc = r" you can override the default by using a modifier on the template"]
#[doc =
r" string operand to specify when subregister to use. This lint is issued"]
#[doc = r" if you pass in a value with a smaller data type than the default"]
#[doc =
r" register size, to alert you of possibly using the incorrect width. To"]
#[doc = r" fix this, add the suggested modifier to the template, or cast the"]
#[doc = r" value to the correct size."]
#[doc = r""]
#[doc =
r" See [register template modifiers] in the reference for more details."]
#[doc = r""]
#[doc =
r" [register template modifiers]: https://doc.rust-lang.org/nightly/reference/inline-assembly.html#template-modifiers"]
pub static ASM_SUB_REGISTER: &crate::Lint =
&crate::Lint {
name: "ASM_SUB_REGISTER",
default_level: crate::Warn,
desc: "using only a subset of a register for inline asm inputs",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2484/// The `asm_sub_register` lint detects using only a subset of a register
2485 /// for inline asm inputs.
2486 ///
2487 /// ### Example
2488 ///
2489 /// ```rust,ignore (fails on non-x86_64)
2490 /// #[cfg(target_arch="x86_64")]
2491 /// use std::arch::asm;
2492 ///
2493 /// fn main() {
2494 /// #[cfg(target_arch="x86_64")]
2495 /// unsafe {
2496 /// asm!("mov {0}, {0}", in(reg) 0i16);
2497 /// }
2498 /// }
2499 /// ```
2500 ///
2501 /// This will produce:
2502 ///
2503 /// ```text
2504 /// warning: formatting may not be suitable for sub-register argument
2505 /// --> src/main.rs:7:19
2506 /// |
2507 /// 7 | asm!("mov {0}, {0}", in(reg) 0i16);
2508 /// | ^^^ ^^^ ---- for this argument
2509 /// |
2510 /// = note: `#[warn(asm_sub_register)]` on by default
2511 /// = help: use the `x` modifier to have the register formatted as `ax`
2512 /// = help: or use the `r` modifier to keep the default formatting of `rax`
2513 /// ```
2514 ///
2515 /// ### Explanation
2516 ///
2517 /// Registers on some architectures can use different names to refer to a
2518 /// subset of the register. By default, the compiler will use the name for
2519 /// the full register size. To explicitly use a subset of the register,
2520 /// you can override the default by using a modifier on the template
2521 /// string operand to specify when subregister to use. This lint is issued
2522 /// if you pass in a value with a smaller data type than the default
2523 /// register size, to alert you of possibly using the incorrect width. To
2524 /// fix this, add the suggested modifier to the template, or cast the
2525 /// value to the correct size.
2526 ///
2527 /// See [register template modifiers] in the reference for more details.
2528 ///
2529 /// [register template modifiers]: https://doc.rust-lang.org/nightly/reference/inline-assembly.html#template-modifiers
2530pub ASM_SUB_REGISTER,
2531 Warn,
2532"using only a subset of a register for inline asm inputs",
2533}25342535#[doc =
r" The `bad_asm_style` lint detects the use of the `.intel_syntax` and"]
#[doc = r" `.att_syntax` directives."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (fails on non-x86_64)"]
#[doc = r#" #[cfg(target_arch="x86_64")]"#]
#[doc = r" use std::arch::asm;"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r#" #[cfg(target_arch="x86_64")]"#]
#[doc = r" unsafe {"]
#[doc = r" asm!("]
#[doc = r#" ".att_syntax","#]
#[doc = r#" "movq %{0}, %{0}", in(reg) 0usize"#]
#[doc = r" );"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r" warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead"]
#[doc = r" --> src/main.rs:8:14"]
#[doc = r" |"]
#[doc = r#" 8 | ".att_syntax","#]
#[doc = r" | ^^^^^^^^^^^"]
#[doc = r" |"]
#[doc = r" = note: `#[warn(bad_asm_style)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" On x86, `asm!` uses the intel assembly syntax by default. While this"]
#[doc =
r" can be switched using assembler directives like `.att_syntax`, using the"]
#[doc =
r" `att_syntax` option is recommended instead because it will also properly"]
#[doc = r" prefix register placeholders with `%` as required by AT&T syntax."]
pub static BAD_ASM_STYLE: &crate::Lint =
&crate::Lint {
name: "BAD_ASM_STYLE",
default_level: crate::Warn,
desc: "incorrect use of inline assembly",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2536/// The `bad_asm_style` lint detects the use of the `.intel_syntax` and
2537 /// `.att_syntax` directives.
2538 ///
2539 /// ### Example
2540 ///
2541 /// ```rust,ignore (fails on non-x86_64)
2542 /// #[cfg(target_arch="x86_64")]
2543 /// use std::arch::asm;
2544 ///
2545 /// fn main() {
2546 /// #[cfg(target_arch="x86_64")]
2547 /// unsafe {
2548 /// asm!(
2549 /// ".att_syntax",
2550 /// "movq %{0}, %{0}", in(reg) 0usize
2551 /// );
2552 /// }
2553 /// }
2554 /// ```
2555 ///
2556 /// This will produce:
2557 ///
2558 /// ```text
2559 /// warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
2560 /// --> src/main.rs:8:14
2561 /// |
2562 /// 8 | ".att_syntax",
2563 /// | ^^^^^^^^^^^
2564 /// |
2565 /// = note: `#[warn(bad_asm_style)]` on by default
2566 /// ```
2567 ///
2568 /// ### Explanation
2569 ///
2570 /// On x86, `asm!` uses the intel assembly syntax by default. While this
2571 /// can be switched using assembler directives like `.att_syntax`, using the
2572 /// `att_syntax` option is recommended instead because it will also properly
2573 /// prefix register placeholders with `%` as required by AT&T syntax.
2574pub BAD_ASM_STYLE,
2575 Warn,
2576"incorrect use of inline assembly",
2577}25782579#[doc =
r" The `unsafe_op_in_unsafe_fn` lint detects unsafe operations in unsafe"]
#[doc = r" functions without an explicit unsafe block."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(unsafe_op_in_unsafe_fn)]"]
#[doc = r""]
#[doc = r" unsafe fn foo() {}"]
#[doc = r""]
#[doc = r" unsafe fn bar() {"]
#[doc = r" foo();"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Currently, an [`unsafe fn`] allows any [unsafe] operation within its"]
#[doc =
r" body. However, this can increase the surface area of code that needs"]
#[doc =
r" to be scrutinized for proper behavior. The [`unsafe` block] provides a"]
#[doc =
r" convenient way to make it clear exactly which parts of the code are"]
#[doc =
r" performing unsafe operations. In the future, it is desired to change"]
#[doc =
r" it so that unsafe operations cannot be performed in an `unsafe fn`"]
#[doc = r" without an `unsafe` block."]
#[doc = r""]
#[doc = r" The fix to this is to wrap the unsafe code in an `unsafe` block."]
#[doc = r""]
#[doc =
r#" This lint is "allow" by default on editions up to 2021, from 2024 it is"#]
#[doc = r#" "warn" by default; the plan for increasing severity further is"#]
#[doc =
r" still being considered. See [RFC #2585] and [issue #71668] for more"]
#[doc = r" details."]
#[doc = r""]
#[doc =
r" [`unsafe fn`]: https://doc.rust-lang.org/reference/unsafe-functions.html"]
#[doc =
r" [`unsafe` block]: https://doc.rust-lang.org/reference/expressions/block-expr.html#unsafe-blocks"]
#[doc = r" [unsafe]: https://doc.rust-lang.org/reference/unsafety.html"]
#[doc =
r" [RFC #2585]: https://github.com/rust-lang/rfcs/blob/master/text/2585-unsafe-block-in-unsafe-fn.md"]
#[doc = r" [issue #71668]: https://github.com/rust-lang/rust/issues/71668"]
pub static UNSAFE_OP_IN_UNSAFE_FN: &crate::Lint =
&crate::Lint {
name: "UNSAFE_OP_IN_UNSAFE_FN",
default_level: crate::Allow,
desc: "unsafe operations in unsafe functions without an explicit unsafe block are deprecated",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "unsafe-op-in-unsafe-fn",
}),
explain_reason: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
edition_lint_opts: Some((crate::Edition::Edition2024,
crate::Warn)),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2580/// The `unsafe_op_in_unsafe_fn` lint detects unsafe operations in unsafe
2581 /// functions without an explicit unsafe block.
2582 ///
2583 /// ### Example
2584 ///
2585 /// ```rust,compile_fail
2586 /// #![deny(unsafe_op_in_unsafe_fn)]
2587 ///
2588 /// unsafe fn foo() {}
2589 ///
2590 /// unsafe fn bar() {
2591 /// foo();
2592 /// }
2593 ///
2594 /// fn main() {}
2595 /// ```
2596 ///
2597 /// {{produces}}
2598 ///
2599 /// ### Explanation
2600 ///
2601 /// Currently, an [`unsafe fn`] allows any [unsafe] operation within its
2602 /// body. However, this can increase the surface area of code that needs
2603 /// to be scrutinized for proper behavior. The [`unsafe` block] provides a
2604 /// convenient way to make it clear exactly which parts of the code are
2605 /// performing unsafe operations. In the future, it is desired to change
2606 /// it so that unsafe operations cannot be performed in an `unsafe fn`
2607 /// without an `unsafe` block.
2608 ///
2609 /// The fix to this is to wrap the unsafe code in an `unsafe` block.
2610 ///
2611 /// This lint is "allow" by default on editions up to 2021, from 2024 it is
2612 /// "warn" by default; the plan for increasing severity further is
2613 /// still being considered. See [RFC #2585] and [issue #71668] for more
2614 /// details.
2615 ///
2616 /// [`unsafe fn`]: https://doc.rust-lang.org/reference/unsafe-functions.html
2617 /// [`unsafe` block]: https://doc.rust-lang.org/reference/expressions/block-expr.html#unsafe-blocks
2618 /// [unsafe]: https://doc.rust-lang.org/reference/unsafety.html
2619 /// [RFC #2585]: https://github.com/rust-lang/rfcs/blob/master/text/2585-unsafe-block-in-unsafe-fn.md
2620 /// [issue #71668]: https://github.com/rust-lang/rust/issues/71668
2621pub UNSAFE_OP_IN_UNSAFE_FN,
2622 Allow,
2623"unsafe operations in unsafe functions without an explicit unsafe block are deprecated",
2624 @future_incompatible = FutureIncompatibleInfo {
2625 reason: fcw!(EditionError 2024 "unsafe-op-in-unsafe-fn"),
2626 explain_reason: false
2627};
2628 @edition Edition2024 => Warn;
2629}26302631#[doc =
r" The `const_evaluatable_unchecked` lint detects a generic constant used"]
#[doc = r" in a type."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" const fn foo<T>() -> usize {"]
#[doc =
r" if size_of::<*mut T>() < 8 { // size of *mut T does not depend on T"]
#[doc = r" 4"]
#[doc = r" } else {"]
#[doc = r" 8"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn test<T>() {"]
#[doc = r" let _ = [0; foo::<T>()];"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In the 1.43 release, some uses of generic parameters in array repeat"]
#[doc =
r" expressions were accidentally allowed. This is a [future-incompatible]"]
#[doc = r" lint to transition this to a hard error in the future. See [issue"]
#[doc = r" #76200] for a more detailed description and possible fixes."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
#[doc = r" [issue #76200]: https://github.com/rust-lang/rust/issues/76200"]
pub static CONST_EVALUATABLE_UNCHECKED: &crate::Lint =
&crate::Lint {
name: "CONST_EVALUATABLE_UNCHECKED",
default_level: crate::Warn,
desc: "detects a generic constant is used in a type without a emitting a warning",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 76200,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2632/// The `const_evaluatable_unchecked` lint detects a generic constant used
2633 /// in a type.
2634 ///
2635 /// ### Example
2636 ///
2637 /// ```rust
2638 /// const fn foo<T>() -> usize {
2639 /// if size_of::<*mut T>() < 8 { // size of *mut T does not depend on T
2640 /// 4
2641 /// } else {
2642 /// 8
2643 /// }
2644 /// }
2645 ///
2646 /// fn test<T>() {
2647 /// let _ = [0; foo::<T>()];
2648 /// }
2649 /// ```
2650 ///
2651 /// {{produces}}
2652 ///
2653 /// ### Explanation
2654 ///
2655 /// In the 1.43 release, some uses of generic parameters in array repeat
2656 /// expressions were accidentally allowed. This is a [future-incompatible]
2657 /// lint to transition this to a hard error in the future. See [issue
2658 /// #76200] for a more detailed description and possible fixes.
2659 ///
2660 /// [future-incompatible]: ../index.md#future-incompatible-lints
2661 /// [issue #76200]: https://github.com/rust-lang/rust/issues/76200
2662pub CONST_EVALUATABLE_UNCHECKED,
2663 Warn,
2664"detects a generic constant is used in a type without a emitting a warning",
2665 @future_incompatible = FutureIncompatibleInfo {
2666 reason: fcw!(FutureReleaseError #76200),
2667 };
2668}26692670#[doc =
r" The `function_item_references` lint detects function references that are"]
#[doc = r" formatted with [`fmt::Pointer`] or transmuted."]
#[doc = r""]
#[doc =
r" [`fmt::Pointer`]: https://doc.rust-lang.org/std/fmt/trait.Pointer.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" fn foo() { }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r#" println!("{:p}", &foo);"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Taking a reference to a function may be mistaken as a way to obtain a"]
#[doc = r" pointer to that function. This can give unexpected results when"]
#[doc =
r" formatting the reference as a pointer or transmuting it. This lint is"]
#[doc =
r" issued when function references are formatted as pointers, passed as"]
#[doc = r" arguments bound by [`fmt::Pointer`] or transmuted."]
pub static FUNCTION_ITEM_REFERENCES: &crate::Lint =
&crate::Lint {
name: "FUNCTION_ITEM_REFERENCES",
default_level: crate::Warn,
desc: "suggest casting to a function pointer when attempting to take references to function items",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2671/// The `function_item_references` lint detects function references that are
2672 /// formatted with [`fmt::Pointer`] or transmuted.
2673 ///
2674 /// [`fmt::Pointer`]: https://doc.rust-lang.org/std/fmt/trait.Pointer.html
2675 ///
2676 /// ### Example
2677 ///
2678 /// ```rust
2679 /// fn foo() { }
2680 ///
2681 /// fn main() {
2682 /// println!("{:p}", &foo);
2683 /// }
2684 /// ```
2685 ///
2686 /// {{produces}}
2687 ///
2688 /// ### Explanation
2689 ///
2690 /// Taking a reference to a function may be mistaken as a way to obtain a
2691 /// pointer to that function. This can give unexpected results when
2692 /// formatting the reference as a pointer or transmuting it. This lint is
2693 /// issued when function references are formatted as pointers, passed as
2694 /// arguments bound by [`fmt::Pointer`] or transmuted.
2695pub FUNCTION_ITEM_REFERENCES,
2696 Warn,
2697"suggest casting to a function pointer when attempting to take references to function items",
2698}26992700#[doc = r" The `uninhabited_static` lint detects uninhabited statics."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" enum Void {}"]
#[doc = r" unsafe extern {"]
#[doc = r" static EXTERN: Void;"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Statics with an uninhabited type can never be initialized, so they are impossible to define."]
#[doc =
r" However, this can be side-stepped with an `extern static`, leading to problems later in the"]
#[doc =
r" compiler which assumes that there are no initialized uninhabited places (such as locals or"]
#[doc = r" statics). This was accidentally allowed, but is being phased out."]
pub static UNINHABITED_STATIC: &crate::Lint =
&crate::Lint {
name: "UNINHABITED_STATIC",
default_level: crate::Deny,
desc: "uninhabited static",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 74840,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2701/// The `uninhabited_static` lint detects uninhabited statics.
2702 ///
2703 /// ### Example
2704 ///
2705 /// ```rust,compile_fail
2706 /// enum Void {}
2707 /// unsafe extern {
2708 /// static EXTERN: Void;
2709 /// }
2710 /// ```
2711 ///
2712 /// {{produces}}
2713 ///
2714 /// ### Explanation
2715 ///
2716 /// Statics with an uninhabited type can never be initialized, so they are impossible to define.
2717 /// However, this can be side-stepped with an `extern static`, leading to problems later in the
2718 /// compiler which assumes that there are no initialized uninhabited places (such as locals or
2719 /// statics). This was accidentally allowed, but is being phased out.
2720pub UNINHABITED_STATIC,
2721 Deny,
2722"uninhabited static",
2723 @future_incompatible = FutureIncompatibleInfo {
2724 reason: fcw!(FutureReleaseError #74840),
2725 report_in_deps: true,
2726 };
2727}27282729#[doc =
r" The `unnameable_test_items` lint detects [`#[test]`][test] functions"]
#[doc =
r" that are not able to be run by the test harness because they are in a"]
#[doc = r" position where they are not nameable."]
#[doc = r""]
#[doc =
r" [test]: https://doc.rust-lang.org/reference/attributes/testing.html#the-test-attribute"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,test"]
#[doc = r" fn main() {"]
#[doc = r" #[test]"]
#[doc = r" fn foo() {"]
#[doc = r" // This test will not fail because it does not run."]
#[doc = r" assert_eq!(1, 2);"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In order for the test harness to run a test, the test function must be"]
#[doc =
r" located in a position where it can be accessed from the crate root."]
#[doc =
r" This generally means it must be defined in a module, and not anywhere"]
#[doc =
r" else such as inside another function. The compiler previously allowed"]
#[doc =
r" this without an error, so a lint was added as an alert that a test is"]
#[doc =
r" not being used. Whether or not this should be allowed has not yet been"]
#[doc = r" decided, see [RFC 2471] and [issue #36629]."]
#[doc = r""]
#[doc =
r" [RFC 2471]: https://github.com/rust-lang/rfcs/pull/2471#issuecomment-397414443"]
#[doc = r" [issue #36629]: https://github.com/rust-lang/rust/issues/36629"]
pub static UNNAMEABLE_TEST_ITEMS: &crate::Lint =
&crate::Lint {
name: "UNNAMEABLE_TEST_ITEMS",
default_level: crate::Warn,
desc: "detects an item that cannot be named being marked as `#[test_case]`",
is_externally_loaded: false,
report_in_external_macro: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2730/// The `unnameable_test_items` lint detects [`#[test]`][test] functions
2731 /// that are not able to be run by the test harness because they are in a
2732 /// position where they are not nameable.
2733 ///
2734 /// [test]: https://doc.rust-lang.org/reference/attributes/testing.html#the-test-attribute
2735 ///
2736 /// ### Example
2737 ///
2738 /// ```rust,test
2739 /// fn main() {
2740 /// #[test]
2741 /// fn foo() {
2742 /// // This test will not fail because it does not run.
2743 /// assert_eq!(1, 2);
2744 /// }
2745 /// }
2746 /// ```
2747 ///
2748 /// {{produces}}
2749 ///
2750 /// ### Explanation
2751 ///
2752 /// In order for the test harness to run a test, the test function must be
2753 /// located in a position where it can be accessed from the crate root.
2754 /// This generally means it must be defined in a module, and not anywhere
2755 /// else such as inside another function. The compiler previously allowed
2756 /// this without an error, so a lint was added as an alert that a test is
2757 /// not being used. Whether or not this should be allowed has not yet been
2758 /// decided, see [RFC 2471] and [issue #36629].
2759 ///
2760 /// [RFC 2471]: https://github.com/rust-lang/rfcs/pull/2471#issuecomment-397414443
2761 /// [issue #36629]: https://github.com/rust-lang/rust/issues/36629
2762pub UNNAMEABLE_TEST_ITEMS,
2763 Warn,
2764"detects an item that cannot be named being marked as `#[test_case]`",
2765 report_in_external_macro
2766}27672768#[doc =
r" The `useless_deprecated` lint detects deprecation attributes with no effect."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" struct X;"]
#[doc = r""]
#[doc = r#" #[deprecated = "message"]"#]
#[doc = r" impl Default for X {"]
#[doc = r" fn default() -> Self {"]
#[doc = r" X"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Deprecation attributes have no effect on trait implementations."]
pub static USELESS_DEPRECATED: &crate::Lint =
&crate::Lint {
name: "USELESS_DEPRECATED",
default_level: crate::Deny,
desc: "detects deprecation attributes with no effect",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2769/// The `useless_deprecated` lint detects deprecation attributes with no effect.
2770 ///
2771 /// ### Example
2772 ///
2773 /// ```rust,compile_fail
2774 /// struct X;
2775 ///
2776 /// #[deprecated = "message"]
2777 /// impl Default for X {
2778 /// fn default() -> Self {
2779 /// X
2780 /// }
2781 /// }
2782 /// ```
2783 ///
2784 /// {{produces}}
2785 ///
2786 /// ### Explanation
2787 ///
2788 /// Deprecation attributes have no effect on trait implementations.
2789pub USELESS_DEPRECATED,
2790 Deny,
2791"detects deprecation attributes with no effect",
2792}27932794#[doc =
r" The `ineffective_unstable_trait_impl` lint detects `#[unstable]` attributes which are not used."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![feature(staged_api)]"]
#[doc = r""]
#[doc = r" #[derive(Clone)]"]
#[doc = r#" #[stable(feature = "x", since = "1")]"#]
#[doc = r" struct S {}"]
#[doc = r""]
#[doc = r#" #[unstable(feature = "y", issue = "none")]"#]
#[doc = r" impl Copy for S {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" `staged_api` does not currently support using a stability attribute on `impl` blocks."]
#[doc =
r" `impl`s are always stable if both the type and trait are stable, and always unstable otherwise."]
pub static INEFFECTIVE_UNSTABLE_TRAIT_IMPL: &crate::Lint =
&crate::Lint {
name: "INEFFECTIVE_UNSTABLE_TRAIT_IMPL",
default_level: crate::Deny,
desc: "detects `#[unstable]` on stable trait implementations for stable types",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2795/// The `ineffective_unstable_trait_impl` lint detects `#[unstable]` attributes which are not used.
2796 ///
2797 /// ### Example
2798 ///
2799 /// ```rust,compile_fail
2800 /// #![feature(staged_api)]
2801 ///
2802 /// #[derive(Clone)]
2803 /// #[stable(feature = "x", since = "1")]
2804 /// struct S {}
2805 ///
2806 /// #[unstable(feature = "y", issue = "none")]
2807 /// impl Copy for S {}
2808 /// ```
2809 ///
2810 /// {{produces}}
2811 ///
2812 /// ### Explanation
2813 ///
2814 /// `staged_api` does not currently support using a stability attribute on `impl` blocks.
2815 /// `impl`s are always stable if both the type and trait are stable, and always unstable otherwise.
2816pub INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
2817 Deny,
2818"detects `#[unstable]` on stable trait implementations for stable types"
2819}28202821#[doc =
r" The `self_constructor_from_outer_item` lint detects cases where the `Self` constructor"]
#[doc =
r" was silently allowed due to a bug in the resolver, and which may produce surprising"]
#[doc = r" and unintended behavior."]
#[doc = r""]
#[doc =
r" Using a `Self` type alias from an outer item was never intended, but was silently allowed."]
#[doc =
r" This is deprecated -- and is a hard error when the `Self` type alias references generics"]
#[doc = r" that are not in scope."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(self_constructor_from_outer_item)]"]
#[doc = r""]
#[doc = r" struct S0(usize);"]
#[doc = r""]
#[doc = r" impl S0 {"]
#[doc = r" fn foo() {"]
#[doc = r" const C: S0 = Self(0);"]
#[doc = r" fn bar() -> S0 {"]
#[doc = r" Self(0)"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The `Self` type alias should not be reachable because nested items are not associated with"]
#[doc = r" the scope of the parameters from the parent item."]
pub static SELF_CONSTRUCTOR_FROM_OUTER_ITEM: &crate::Lint =
&crate::Lint {
name: "SELF_CONSTRUCTOR_FROM_OUTER_ITEM",
default_level: crate::Warn,
desc: "detect unsupported use of `Self` from outer item",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 124186,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2822/// The `self_constructor_from_outer_item` lint detects cases where the `Self` constructor
2823 /// was silently allowed due to a bug in the resolver, and which may produce surprising
2824 /// and unintended behavior.
2825 ///
2826 /// Using a `Self` type alias from an outer item was never intended, but was silently allowed.
2827 /// This is deprecated -- and is a hard error when the `Self` type alias references generics
2828 /// that are not in scope.
2829 ///
2830 /// ### Example
2831 ///
2832 /// ```rust,compile_fail
2833 /// #![deny(self_constructor_from_outer_item)]
2834 ///
2835 /// struct S0(usize);
2836 ///
2837 /// impl S0 {
2838 /// fn foo() {
2839 /// const C: S0 = Self(0);
2840 /// fn bar() -> S0 {
2841 /// Self(0)
2842 /// }
2843 /// }
2844 /// }
2845 /// ```
2846 ///
2847 /// {{produces}}
2848 ///
2849 /// ### Explanation
2850 ///
2851 /// The `Self` type alias should not be reachable because nested items are not associated with
2852 /// the scope of the parameters from the parent item.
2853pub SELF_CONSTRUCTOR_FROM_OUTER_ITEM,
2854 Warn,
2855"detect unsupported use of `Self` from outer item",
2856 @future_incompatible = FutureIncompatibleInfo {
2857 reason: fcw!(FutureReleaseError #124186),
2858 };
2859}28602861#[doc =
r" The `semicolon_in_expressions_from_macros` lint detects trailing semicolons"]
#[doc = r" in macro bodies when the macro is invoked in expression position."]
#[doc = r" This was previous accepted, but is being phased out."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(semicolon_in_expressions_from_macros)]"]
#[doc = r" macro_rules! foo {"]
#[doc = r" () => { true; }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" let val = match true {"]
#[doc = r" true => false,"]
#[doc = r" _ => foo!()"]
#[doc = r" };"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Previous, Rust ignored trailing semicolon in a macro"]
#[doc = r" body when a macro was invoked in expression position."]
#[doc = r" However, this makes the treatment of semicolons in the language"]
#[doc = r" inconsistent, and could lead to unexpected runtime behavior"]
#[doc = r" in some circumstances (e.g. if the macro author expects"]
#[doc = r" a value to be dropped)."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this"]
#[doc =
r" to a hard error in the future. See [issue #79813] for more details."]
#[doc = r""]
#[doc = r" [issue #79813]: https://github.com/rust-lang/rust/issues/79813"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static SEMICOLON_IN_EXPRESSIONS_FROM_MACROS: &crate::Lint =
&crate::Lint {
name: "SEMICOLON_IN_EXPRESSIONS_FROM_MACROS",
default_level: crate::Deny,
desc: "trailing semicolon in macro body used as expression",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 79813,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2862/// The `semicolon_in_expressions_from_macros` lint detects trailing semicolons
2863 /// in macro bodies when the macro is invoked in expression position.
2864 /// This was previous accepted, but is being phased out.
2865 ///
2866 /// ### Example
2867 ///
2868 /// ```rust,compile_fail
2869 /// #![deny(semicolon_in_expressions_from_macros)]
2870 /// macro_rules! foo {
2871 /// () => { true; }
2872 /// }
2873 ///
2874 /// fn main() {
2875 /// let val = match true {
2876 /// true => false,
2877 /// _ => foo!()
2878 /// };
2879 /// }
2880 /// ```
2881 ///
2882 /// {{produces}}
2883 ///
2884 /// ### Explanation
2885 ///
2886 /// Previous, Rust ignored trailing semicolon in a macro
2887 /// body when a macro was invoked in expression position.
2888 /// However, this makes the treatment of semicolons in the language
2889 /// inconsistent, and could lead to unexpected runtime behavior
2890 /// in some circumstances (e.g. if the macro author expects
2891 /// a value to be dropped).
2892 ///
2893 /// This is a [future-incompatible] lint to transition this
2894 /// to a hard error in the future. See [issue #79813] for more details.
2895 ///
2896 /// [issue #79813]: https://github.com/rust-lang/rust/issues/79813
2897 /// [future-incompatible]: ../index.md#future-incompatible-lints
2898pub SEMICOLON_IN_EXPRESSIONS_FROM_MACROS,
2899 Deny,
2900"trailing semicolon in macro body used as expression",
2901 @future_incompatible = FutureIncompatibleInfo {
2902 reason: fcw!(FutureReleaseError #79813),
2903 report_in_deps: true,
2904 };
2905}29062907#[doc =
r" The `semicolon_in_expressions_from_non_local_macros` lint detects trailing semicolons in"]
#[doc =
r" macro bodies when the macro is invoked in expression position. This was previously accepted,"]
#[doc =
r" but is being phased out. This is similar to the `semicolon_in_expressions_from_macros` lint,"]
#[doc = r" but applies to macros expanded from a different crate."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs separate file)"]
#[doc = r" fn main() {"]
#[doc = r" let val = match true {"]
#[doc = r" true => false,"]
#[doc = r" _ => example_separate_crate::foo!()"]
#[doc = r" };"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" where the crate `example-separate-crate` contains:"]
#[doc = r""]
#[doc = r" ```rust,ignore (must be compiled as separate crate)"]
#[doc = r" #[macro_export]"]
#[doc = r" macro_rules! foo {"]
#[doc = r" () => { true; }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" produces:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: trailing semicolon in macro used in expression position"]
#[doc = r" --> src/main.rs:4:14"]
#[doc = r" |"]
#[doc = r" 4 | _ => example_separate_crate::foo!()"]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc =
r" = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!"]
#[doc =
r" = note: for more information, see issue #79813 <https://github.com/rust-lang/rust/issues/79813>"]
#[doc =
r" = note: `#[warn(semicolon_in_expressions_from_non_local_macros)]` (part of `#[warn(future_incompatible)]`) on by default"]
#[doc =
r" = note: this warning originates in the macro `example_separate_crate::foo` (in Nightly builds, run with -Z macro-backtrace for more info)"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Previous, Rust ignored trailing semicolon in a macro"]
#[doc = r" body when a macro was invoked in expression position."]
#[doc = r" However, this makes the treatment of semicolons in the language"]
#[doc = r" inconsistent, and could lead to unexpected runtime behavior"]
#[doc = r" in some circumstances (e.g. if the macro author expects"]
#[doc = r" a value to be dropped)."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this"]
#[doc =
r" to a hard error in the future. See [issue #79813] for more details."]
#[doc = r""]
#[doc = r" [issue #79813]: https://github.com/rust-lang/rust/issues/79813"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static SEMICOLON_IN_EXPRESSIONS_FROM_NON_LOCAL_MACROS: &crate::Lint =
&crate::Lint {
name: "SEMICOLON_IN_EXPRESSIONS_FROM_NON_LOCAL_MACROS",
default_level: crate::Warn,
desc: "trailing semicolon in macro body used as expression",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 79813,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2908/// The `semicolon_in_expressions_from_non_local_macros` lint detects trailing semicolons in
2909 /// macro bodies when the macro is invoked in expression position. This was previously accepted,
2910 /// but is being phased out. This is similar to the `semicolon_in_expressions_from_macros` lint,
2911 /// but applies to macros expanded from a different crate.
2912 ///
2913 /// ### Example
2914 ///
2915 /// ```rust,ignore (needs separate file)
2916 /// fn main() {
2917 /// let val = match true {
2918 /// true => false,
2919 /// _ => example_separate_crate::foo!()
2920 /// };
2921 /// }
2922 /// ```
2923 ///
2924 /// where the crate `example-separate-crate` contains:
2925 ///
2926 /// ```rust,ignore (must be compiled as separate crate)
2927 /// #[macro_export]
2928 /// macro_rules! foo {
2929 /// () => { true; }
2930 /// }
2931 /// ```
2932 ///
2933 /// produces:
2934 ///
2935 /// ```text
2936 /// warning: trailing semicolon in macro used in expression position
2937 /// --> src/main.rs:4:14
2938 /// |
2939 /// 4 | _ => example_separate_crate::foo!()
2940 /// | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2941 /// |
2942 /// = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2943 /// = note: for more information, see issue #79813 <https://github.com/rust-lang/rust/issues/79813>
2944 /// = note: `#[warn(semicolon_in_expressions_from_non_local_macros)]` (part of `#[warn(future_incompatible)]`) on by default
2945 /// = note: this warning originates in the macro `example_separate_crate::foo` (in Nightly builds, run with -Z macro-backtrace for more info)
2946 /// ```
2947 ///
2948 /// ### Explanation
2949 ///
2950 /// Previous, Rust ignored trailing semicolon in a macro
2951 /// body when a macro was invoked in expression position.
2952 /// However, this makes the treatment of semicolons in the language
2953 /// inconsistent, and could lead to unexpected runtime behavior
2954 /// in some circumstances (e.g. if the macro author expects
2955 /// a value to be dropped).
2956 ///
2957 /// This is a [future-incompatible] lint to transition this
2958 /// to a hard error in the future. See [issue #79813] for more details.
2959 ///
2960 /// [issue #79813]: https://github.com/rust-lang/rust/issues/79813
2961 /// [future-incompatible]: ../index.md#future-incompatible-lints
2962pub SEMICOLON_IN_EXPRESSIONS_FROM_NON_LOCAL_MACROS,
2963 Warn,
2964"trailing semicolon in macro body used as expression",
2965 @future_incompatible = FutureIncompatibleInfo {
2966 reason: fcw!(FutureReleaseError #79813),
2967 report_in_deps: true,
2968 };
2969}29702971#[doc = r" The `legacy_derive_helpers` lint detects derive helper attributes"]
#[doc = r" that are used before they are introduced."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs extern crate)"]
#[doc = r#" #[serde(rename_all = "camelCase")]"#]
#[doc = r" #[derive(Deserialize)]"]
#[doc = r" struct S { /* fields */ }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" produces:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: derive helper attribute is used before it is introduced"]
#[doc = r" --> $DIR/legacy-derive-helpers.rs:1:3"]
#[doc = r" |"]
#[doc = r#" 1 | #[serde(rename_all = "camelCase")]"#]
#[doc = r" | ^^^^^"]
#[doc = r" ..."]
#[doc = r" 2 | #[derive(Deserialize)]"]
#[doc = r" | ----------- the attribute is introduced here"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Attributes like this work for historical reasons, but attribute expansion works in"]
#[doc =
r#" left-to-right order in general, so, to resolve `#[serde]`, compiler has to try to "look"#]
#[doc =
r#" into the future" at not yet expanded part of the item , but such attempts are not always"#]
#[doc = r" reliable."]
#[doc = r""]
#[doc =
r" To fix the warning place the helper attribute after its corresponding derive."]
#[doc = r" ```rust,ignore (needs extern crate)"]
#[doc = r" #[derive(Deserialize)]"]
#[doc = r#" #[serde(rename_all = "camelCase")]"#]
#[doc = r" struct S { /* fields */ }"]
#[doc = r" ```"]
pub static LEGACY_DERIVE_HELPERS: &crate::Lint =
&crate::Lint {
name: "LEGACY_DERIVE_HELPERS",
default_level: crate::Deny,
desc: "detects derive helper attributes that are used before they are introduced",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 79202,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
2972/// The `legacy_derive_helpers` lint detects derive helper attributes
2973 /// that are used before they are introduced.
2974 ///
2975 /// ### Example
2976 ///
2977 /// ```rust,ignore (needs extern crate)
2978 /// #[serde(rename_all = "camelCase")]
2979 /// #[derive(Deserialize)]
2980 /// struct S { /* fields */ }
2981 /// ```
2982 ///
2983 /// produces:
2984 ///
2985 /// ```text
2986 /// warning: derive helper attribute is used before it is introduced
2987 /// --> $DIR/legacy-derive-helpers.rs:1:3
2988 /// |
2989 /// 1 | #[serde(rename_all = "camelCase")]
2990 /// | ^^^^^
2991 /// ...
2992 /// 2 | #[derive(Deserialize)]
2993 /// | ----------- the attribute is introduced here
2994 /// ```
2995 ///
2996 /// ### Explanation
2997 ///
2998 /// Attributes like this work for historical reasons, but attribute expansion works in
2999 /// left-to-right order in general, so, to resolve `#[serde]`, compiler has to try to "look
3000 /// into the future" at not yet expanded part of the item , but such attempts are not always
3001 /// reliable.
3002 ///
3003 /// To fix the warning place the helper attribute after its corresponding derive.
3004 /// ```rust,ignore (needs extern crate)
3005 /// #[derive(Deserialize)]
3006 /// #[serde(rename_all = "camelCase")]
3007 /// struct S { /* fields */ }
3008 /// ```
3009pub LEGACY_DERIVE_HELPERS,
3010 Deny,
3011"detects derive helper attributes that are used before they are introduced",
3012 @future_incompatible = FutureIncompatibleInfo {
3013 reason: fcw!(FutureReleaseError #79202),
3014 report_in_deps: true,
3015 };
3016}30173018#[doc = r" The `large_assignments` lint detects when objects of large"]
#[doc = r" types are being moved around."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (can crash on some platforms)"]
#[doc = r" let x = [0; 50000];"]
#[doc = r" let y = x;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" produces:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: moving a large value"]
#[doc = r" --> $DIR/move-large.rs:1:3"]
#[doc = r" let y = x;"]
#[doc = r" - Copied large value here"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" When using a large type in a plain assignment or in a function"]
#[doc = r" argument, idiomatic code can be inefficient."]
#[doc = r" Ideally appropriate optimizations would resolve this, but such"]
#[doc = r" optimizations are only done in a best-effort manner."]
#[doc =
r" This lint will trigger on all sites of large moves and thus allow the"]
#[doc = r" user to resolve them in code."]
pub static LARGE_ASSIGNMENTS: &crate::Lint =
&crate::Lint {
name: "LARGE_ASSIGNMENTS",
default_level: crate::Warn,
desc: "detects large moves or copies",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3019/// The `large_assignments` lint detects when objects of large
3020 /// types are being moved around.
3021 ///
3022 /// ### Example
3023 ///
3024 /// ```rust,ignore (can crash on some platforms)
3025 /// let x = [0; 50000];
3026 /// let y = x;
3027 /// ```
3028 ///
3029 /// produces:
3030 ///
3031 /// ```text
3032 /// warning: moving a large value
3033 /// --> $DIR/move-large.rs:1:3
3034 /// let y = x;
3035 /// - Copied large value here
3036 /// ```
3037 ///
3038 /// ### Explanation
3039 ///
3040 /// When using a large type in a plain assignment or in a function
3041 /// argument, idiomatic code can be inefficient.
3042 /// Ideally appropriate optimizations would resolve this, but such
3043 /// optimizations are only done in a best-effort manner.
3044 /// This lint will trigger on all sites of large moves and thus allow the
3045 /// user to resolve them in code.
3046pub LARGE_ASSIGNMENTS,
3047 Warn,
3048"detects large moves or copies",
3049}30503051#[doc =
r" The `unexpected_cfgs` lint detects unexpected conditional compilation conditions."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" rustc --check-cfg 'cfg()'"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs command line option)"]
#[doc = r" #[cfg(widnows)]"]
#[doc = r" fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: unexpected `cfg` condition name: `widnows`"]
#[doc = r" --> lint_example.rs:1:7"]
#[doc = r" |"]
#[doc = r" 1 | #[cfg(widnows)]"]
#[doc = r" | ^^^^^^^"]
#[doc = r" |"]
#[doc = r" = note: `#[warn(unexpected_cfgs)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This lint is only active when [`--check-cfg`][check-cfg] arguments are being"]
#[doc =
r" passed to the compiler and triggers whenever an unexpected condition name or value is"]
#[doc = r" used."]
#[doc = r""]
#[doc =
r" See the [Checking Conditional Configurations][check-cfg] section for more"]
#[doc = r" details."]
#[doc = r""]
#[doc =
r" See the [Cargo Specifics][unexpected_cfgs_lint_config] section for configuring this lint in"]
#[doc = r" `Cargo.toml`."]
#[doc = r""]
#[doc =
r" [check-cfg]: https://doc.rust-lang.org/nightly/rustc/check-cfg.html"]
#[doc =
r" [unexpected_cfgs_lint_config]: https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html#check-cfg-in-lintsrust-table"]
pub static UNEXPECTED_CFGS: &crate::Lint =
&crate::Lint {
name: "UNEXPECTED_CFGS",
default_level: crate::Warn,
desc: "detects unexpected names and values in `#[cfg]` conditions",
is_externally_loaded: false,
report_in_external_macro: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3052/// The `unexpected_cfgs` lint detects unexpected conditional compilation conditions.
3053 ///
3054 /// ### Example
3055 ///
3056 /// ```text
3057 /// rustc --check-cfg 'cfg()'
3058 /// ```
3059 ///
3060 /// ```rust,ignore (needs command line option)
3061 /// #[cfg(widnows)]
3062 /// fn foo() {}
3063 /// ```
3064 ///
3065 /// This will produce:
3066 ///
3067 /// ```text
3068 /// warning: unexpected `cfg` condition name: `widnows`
3069 /// --> lint_example.rs:1:7
3070 /// |
3071 /// 1 | #[cfg(widnows)]
3072 /// | ^^^^^^^
3073 /// |
3074 /// = note: `#[warn(unexpected_cfgs)]` on by default
3075 /// ```
3076 ///
3077 /// ### Explanation
3078 ///
3079 /// This lint is only active when [`--check-cfg`][check-cfg] arguments are being
3080 /// passed to the compiler and triggers whenever an unexpected condition name or value is
3081 /// used.
3082 ///
3083 /// See the [Checking Conditional Configurations][check-cfg] section for more
3084 /// details.
3085 ///
3086 /// See the [Cargo Specifics][unexpected_cfgs_lint_config] section for configuring this lint in
3087 /// `Cargo.toml`.
3088 ///
3089 /// [check-cfg]: https://doc.rust-lang.org/nightly/rustc/check-cfg.html
3090 /// [unexpected_cfgs_lint_config]: https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html#check-cfg-in-lintsrust-table
3091pub UNEXPECTED_CFGS,
3092 Warn,
3093"detects unexpected names and values in `#[cfg]` conditions",
3094 report_in_external_macro
3095}30963097#[doc =
r" The `explicit_builtin_cfgs_in_flags` lint detects builtin cfgs set via the `--cfg` flag."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" rustc --cfg unix"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs command line option)"]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" error: unexpected `--cfg unix` flag"]
#[doc = r" |"]
#[doc =
r" = note: config `unix` is only supposed to be controlled by `--target`"]
#[doc =
r" = note: manually setting a built-in cfg can and does create incoherent behaviors"]
#[doc = r" = note: `#[deny(explicit_builtin_cfgs_in_flags)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Setting builtin cfgs can and does produce incoherent behavior, it's better to the use"]
#[doc =
r" the appropriate `rustc` flag that controls the config. For example setting the `windows`"]
#[doc = r" cfg but on Linux based target."]
pub static EXPLICIT_BUILTIN_CFGS_IN_FLAGS: &crate::Lint =
&crate::Lint {
name: "EXPLICIT_BUILTIN_CFGS_IN_FLAGS",
default_level: crate::Deny,
desc: "detects builtin cfgs set via the `--cfg`",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3098/// The `explicit_builtin_cfgs_in_flags` lint detects builtin cfgs set via the `--cfg` flag.
3099 ///
3100 /// ### Example
3101 ///
3102 /// ```text
3103 /// rustc --cfg unix
3104 /// ```
3105 ///
3106 /// ```rust,ignore (needs command line option)
3107 /// fn main() {}
3108 /// ```
3109 ///
3110 /// This will produce:
3111 ///
3112 /// ```text
3113 /// error: unexpected `--cfg unix` flag
3114 /// |
3115 /// = note: config `unix` is only supposed to be controlled by `--target`
3116 /// = note: manually setting a built-in cfg can and does create incoherent behaviors
3117 /// = note: `#[deny(explicit_builtin_cfgs_in_flags)]` on by default
3118 /// ```
3119 ///
3120 /// ### Explanation
3121 ///
3122 /// Setting builtin cfgs can and does produce incoherent behavior, it's better to the use
3123 /// the appropriate `rustc` flag that controls the config. For example setting the `windows`
3124 /// cfg but on Linux based target.
3125pub EXPLICIT_BUILTIN_CFGS_IN_FLAGS,
3126 Deny,
3127"detects builtin cfgs set via the `--cfg`"
3128}31293130#[doc =
r" The `unstable_syntax_pre_expansion` lint detects the use of unstable"]
#[doc = r" syntax that is discarded during attribute expansion."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r#" #[cfg(feature = "nightly")]"#]
#[doc = r" macro foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The input to active attributes such as `#[cfg]` or procedural macro"]
#[doc =
r" attributes is required to be valid syntax. Previously, the compiler only"]
#[doc =
r" gated the use of unstable syntax features after resolving `#[cfg]` gates"]
#[doc = r" and expanding procedural macros."]
#[doc = r""]
#[doc =
r" To avoid relying on unstable syntax, move the use of unstable syntax"]
#[doc =
r" into a position where the compiler does not parse the syntax, such as a"]
#[doc = r" functionlike macro."]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" # #![deny(unstable_syntax_pre_expansion)]"]
#[doc = r""]
#[doc = r" macro_rules! identity {"]
#[doc = r" ( $($tokens:tt)* ) => { $($tokens)* }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r#" #[cfg(feature = "nightly")]"#]
#[doc = r" identity! {"]
#[doc = r" macro foo() {}"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this"]
#[doc =
r" to a hard error in the future. See [issue #154045] for more details."]
#[doc = r""]
#[doc = r" [issue #154045]: https://github.com/rust-lang/rust/issues/154045"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static UNSTABLE_SYNTAX_PRE_EXPANSION: &crate::Lint =
&crate::Lint {
name: "UNSTABLE_SYNTAX_PRE_EXPANSION",
default_level: crate::Warn,
desc: "unstable syntax can change at any point in the future, causing a hard error!",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 154045,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3131/// The `unstable_syntax_pre_expansion` lint detects the use of unstable
3132 /// syntax that is discarded during attribute expansion.
3133 ///
3134 /// ### Example
3135 ///
3136 /// ```rust
3137 /// #[cfg(feature = "nightly")]
3138 /// macro foo() {}
3139 /// ```
3140 ///
3141 /// {{produces}}
3142 ///
3143 /// ### Explanation
3144 ///
3145 /// The input to active attributes such as `#[cfg]` or procedural macro
3146 /// attributes is required to be valid syntax. Previously, the compiler only
3147 /// gated the use of unstable syntax features after resolving `#[cfg]` gates
3148 /// and expanding procedural macros.
3149 ///
3150 /// To avoid relying on unstable syntax, move the use of unstable syntax
3151 /// into a position where the compiler does not parse the syntax, such as a
3152 /// functionlike macro.
3153 ///
3154 /// ```rust
3155 /// # #![deny(unstable_syntax_pre_expansion)]
3156 ///
3157 /// macro_rules! identity {
3158 /// ( $($tokens:tt)* ) => { $($tokens)* }
3159 /// }
3160 ///
3161 /// #[cfg(feature = "nightly")]
3162 /// identity! {
3163 /// macro foo() {}
3164 /// }
3165 /// ```
3166 ///
3167 /// This is a [future-incompatible] lint to transition this
3168 /// to a hard error in the future. See [issue #154045] for more details.
3169 ///
3170 /// [issue #154045]: https://github.com/rust-lang/rust/issues/154045
3171 /// [future-incompatible]: ../index.md#future-incompatible-lints
3172pub UNSTABLE_SYNTAX_PRE_EXPANSION,
3173 Warn,
3174"unstable syntax can change at any point in the future, causing a hard error!",
3175 @future_incompatible = FutureIncompatibleInfo {
3176 reason: fcw!(FutureReleaseError #154045),
3177 };
3178}31793180#[doc =
r" The `ambiguous_glob_reexports` lint detects cases where names re-exported via globs"]
#[doc =
r" collide. Downstream users trying to use the same name re-exported from multiple globs"]
#[doc =
r" will receive a warning pointing out redefinition of the same name."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(ambiguous_glob_reexports)]"]
#[doc = r" pub mod foo {"]
#[doc = r" pub type X = u8;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" pub mod bar {"]
#[doc = r" pub type Y = u8;"]
#[doc = r" pub type X = u8;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" pub use foo::*;"]
#[doc = r" pub use bar::*;"]
#[doc = r""]
#[doc = r""]
#[doc = r" pub fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This was previously accepted but it could silently break a crate's downstream users code."]
#[doc =
r" For example, if `foo::*` and `bar::*` were re-exported before `bar::X` was added to the"]
#[doc =
r" re-exports, down stream users could use `this_crate::X` without problems. However, adding"]
#[doc =
r" `bar::X` would cause compilation errors in downstream crates because `X` is defined"]
#[doc = r" multiple times in the same namespace of `this_crate`."]
pub static AMBIGUOUS_GLOB_REEXPORTS: &crate::Lint =
&crate::Lint {
name: "AMBIGUOUS_GLOB_REEXPORTS",
default_level: crate::Warn,
desc: "ambiguous glob re-exports",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3181/// The `ambiguous_glob_reexports` lint detects cases where names re-exported via globs
3182 /// collide. Downstream users trying to use the same name re-exported from multiple globs
3183 /// will receive a warning pointing out redefinition of the same name.
3184 ///
3185 /// ### Example
3186 ///
3187 /// ```rust,compile_fail
3188 /// #![deny(ambiguous_glob_reexports)]
3189 /// pub mod foo {
3190 /// pub type X = u8;
3191 /// }
3192 ///
3193 /// pub mod bar {
3194 /// pub type Y = u8;
3195 /// pub type X = u8;
3196 /// }
3197 ///
3198 /// pub use foo::*;
3199 /// pub use bar::*;
3200 ///
3201 ///
3202 /// pub fn main() {}
3203 /// ```
3204 ///
3205 /// {{produces}}
3206 ///
3207 /// ### Explanation
3208 ///
3209 /// This was previously accepted but it could silently break a crate's downstream users code.
3210 /// For example, if `foo::*` and `bar::*` were re-exported before `bar::X` was added to the
3211 /// re-exports, down stream users could use `this_crate::X` without problems. However, adding
3212 /// `bar::X` would cause compilation errors in downstream crates because `X` is defined
3213 /// multiple times in the same namespace of `this_crate`.
3214pub AMBIGUOUS_GLOB_REEXPORTS,
3215 Warn,
3216"ambiguous glob re-exports",
3217}32183219#[doc =
r" The `hidden_glob_reexports` lint detects cases where glob re-export items are shadowed by"]
#[doc = r" private items."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(hidden_glob_reexports)]"]
#[doc = r""]
#[doc = r" pub mod upstream {"]
#[doc = r" mod inner { pub struct Foo {}; pub struct Bar {}; }"]
#[doc = r" pub use self::inner::*;"]
#[doc = r" struct Foo {} // private item shadows `inner::Foo`"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" // mod downstream {"]
#[doc = r" // fn test() {"]
#[doc = r" // let _ = crate::upstream::Foo; // inaccessible"]
#[doc = r" // }"]
#[doc = r" // }"]
#[doc = r""]
#[doc = r" pub fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This was previously accepted without any errors or warnings but it could silently break a"]
#[doc =
r" crate's downstream user code. If the `struct Foo` was added, `dep::inner::Foo` would"]
#[doc =
r#" silently become inaccessible and trigger a "`struct `Foo` is private`" visibility error at"#]
#[doc = r" the downstream use site."]
pub static HIDDEN_GLOB_REEXPORTS: &crate::Lint =
&crate::Lint {
name: "HIDDEN_GLOB_REEXPORTS",
default_level: crate::Warn,
desc: "name introduced by a private item shadows a name introduced by a public glob re-export",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3220/// The `hidden_glob_reexports` lint detects cases where glob re-export items are shadowed by
3221 /// private items.
3222 ///
3223 /// ### Example
3224 ///
3225 /// ```rust,compile_fail
3226 /// #![deny(hidden_glob_reexports)]
3227 ///
3228 /// pub mod upstream {
3229 /// mod inner { pub struct Foo {}; pub struct Bar {}; }
3230 /// pub use self::inner::*;
3231 /// struct Foo {} // private item shadows `inner::Foo`
3232 /// }
3233 ///
3234 /// // mod downstream {
3235 /// // fn test() {
3236 /// // let _ = crate::upstream::Foo; // inaccessible
3237 /// // }
3238 /// // }
3239 ///
3240 /// pub fn main() {}
3241 /// ```
3242 ///
3243 /// {{produces}}
3244 ///
3245 /// ### Explanation
3246 ///
3247 /// This was previously accepted without any errors or warnings but it could silently break a
3248 /// crate's downstream user code. If the `struct Foo` was added, `dep::inner::Foo` would
3249 /// silently become inaccessible and trigger a "`struct `Foo` is private`" visibility error at
3250 /// the downstream use site.
3251pub HIDDEN_GLOB_REEXPORTS,
3252 Warn,
3253"name introduced by a private item shadows a name introduced by a public glob re-export",
3254}32553256#[doc = r" The `long_running_const_eval` lint is emitted when const"]
#[doc = r" eval is running for a long time to ensure rustc terminates"]
#[doc = r" even if you accidentally wrote an infinite loop."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" const FOO: () = loop {};"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Loops allow const evaluation to compute arbitrary code, but may also"]
#[doc = r" cause infinite loops or just very long running computations."]
#[doc = r" Users can enable long running computations by allowing the lint"]
#[doc = r" on individual constants or for entire crates."]
#[doc = r""]
#[doc = r" ### Unconditional warnings"]
#[doc = r""]
#[doc =
r" Note that regardless of whether the lint is allowed or set to warn,"]
#[doc =
r" the compiler will issue warnings if constant evaluation runs significantly"]
#[doc =
r" longer than this lint's limit. These warnings are also shown to downstream"]
#[doc =
r" users from crates.io or similar registries. If you are above the lint's limit,"]
#[doc = r" both you and downstream users might be exposed to these warnings."]
#[doc =
r" They might also appear on compiler updates, as the compiler makes minor changes"]
#[doc =
r" about how complexity is measured: staying below the limit ensures that there"]
#[doc =
r" is enough room, and given that the lint is disabled for people who use your"]
#[doc =
r" dependency it means you will be the only one to get the warning and can put"]
#[doc = r" out an update in your own time."]
pub static LONG_RUNNING_CONST_EVAL: &crate::Lint =
&crate::Lint {
name: "LONG_RUNNING_CONST_EVAL",
default_level: crate::Deny,
desc: "detects long const eval operations",
is_externally_loaded: false,
report_in_external_macro: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3257/// The `long_running_const_eval` lint is emitted when const
3258 /// eval is running for a long time to ensure rustc terminates
3259 /// even if you accidentally wrote an infinite loop.
3260 ///
3261 /// ### Example
3262 ///
3263 /// ```rust,compile_fail
3264 /// const FOO: () = loop {};
3265 /// ```
3266 ///
3267 /// {{produces}}
3268 ///
3269 /// ### Explanation
3270 ///
3271 /// Loops allow const evaluation to compute arbitrary code, but may also
3272 /// cause infinite loops or just very long running computations.
3273 /// Users can enable long running computations by allowing the lint
3274 /// on individual constants or for entire crates.
3275 ///
3276 /// ### Unconditional warnings
3277 ///
3278 /// Note that regardless of whether the lint is allowed or set to warn,
3279 /// the compiler will issue warnings if constant evaluation runs significantly
3280 /// longer than this lint's limit. These warnings are also shown to downstream
3281 /// users from crates.io or similar registries. If you are above the lint's limit,
3282 /// both you and downstream users might be exposed to these warnings.
3283 /// They might also appear on compiler updates, as the compiler makes minor changes
3284 /// about how complexity is measured: staying below the limit ensures that there
3285 /// is enough room, and given that the lint is disabled for people who use your
3286 /// dependency it means you will be the only one to get the warning and can put
3287 /// out an update in your own time.
3288pub LONG_RUNNING_CONST_EVAL,
3289 Deny,
3290"detects long const eval operations",
3291 report_in_external_macro
3292}32933294#[doc = r" The `unused_associated_type_bounds` lint is emitted when an"]
#[doc =
r" associated type bound is added to a trait object, but the associated"]
#[doc =
r" type has a `where Self: Sized` bound, and is thus unavailable on the"]
#[doc = r" trait object anyway."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" trait Foo {"]
#[doc = r" type Bar where Self: Sized;"]
#[doc = r" }"]
#[doc = r" type Mop = dyn Foo<Bar = ()>;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Just like methods with `Self: Sized` bounds are unavailable on trait"]
#[doc = r" objects, associated types can be removed from the trait object."]
pub static UNUSED_ASSOCIATED_TYPE_BOUNDS: &crate::Lint =
&crate::Lint {
name: "UNUSED_ASSOCIATED_TYPE_BOUNDS",
default_level: crate::Warn,
desc: "detects unused `Foo = Bar` bounds in `dyn Trait<Foo = Bar>`",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3295/// The `unused_associated_type_bounds` lint is emitted when an
3296 /// associated type bound is added to a trait object, but the associated
3297 /// type has a `where Self: Sized` bound, and is thus unavailable on the
3298 /// trait object anyway.
3299 ///
3300 /// ### Example
3301 ///
3302 /// ```rust
3303 /// trait Foo {
3304 /// type Bar where Self: Sized;
3305 /// }
3306 /// type Mop = dyn Foo<Bar = ()>;
3307 /// ```
3308 ///
3309 /// {{produces}}
3310 ///
3311 /// ### Explanation
3312 ///
3313 /// Just like methods with `Self: Sized` bounds are unavailable on trait
3314 /// objects, associated types can be removed from the trait object.
3315pub UNUSED_ASSOCIATED_TYPE_BOUNDS,
3316 Warn,
3317"detects unused `Foo = Bar` bounds in `dyn Trait<Foo = Bar>`"
3318}33193320#[doc =
r" The `unused_doc_comments` lint detects doc comments that aren't used"]
#[doc = r" by `rustdoc`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" /// docs for x"]
#[doc = r" let x = 12;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" `rustdoc` does not use doc comments in all positions, and so the doc"]
#[doc =
r" comment will be ignored. Try changing it to a normal comment with `//`"]
#[doc = r" to avoid the warning."]
pub static UNUSED_DOC_COMMENTS: &crate::Lint =
&crate::Lint {
name: "UNUSED_DOC_COMMENTS",
default_level: crate::Warn,
desc: "detects doc comments that aren't used by rustdoc",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3321/// The `unused_doc_comments` lint detects doc comments that aren't used
3322 /// by `rustdoc`.
3323 ///
3324 /// ### Example
3325 ///
3326 /// ```rust
3327 /// /// docs for x
3328 /// let x = 12;
3329 /// ```
3330 ///
3331 /// {{produces}}
3332 ///
3333 /// ### Explanation
3334 ///
3335 /// `rustdoc` does not use doc comments in all positions, and so the doc
3336 /// comment will be ignored. Try changing it to a normal comment with `//`
3337 /// to avoid the warning.
3338pub UNUSED_DOC_COMMENTS,
3339 Warn,
3340"detects doc comments that aren't used by rustdoc"
3341}33423343#[doc =
r" The `rust_2021_incompatible_closure_captures` lint detects variables that aren't completely"]
#[doc =
r" captured in Rust 2021, such that the `Drop` order of their fields may differ between"]
#[doc = r" Rust 2018 and 2021."]
#[doc = r""]
#[doc =
r" It can also detect when a variable implements a trait like `Send`, but one of its fields does not,"]
#[doc =
r" and the field is captured by a closure and used with the assumption that said field implements"]
#[doc = r" the same trait as the root variable."]
#[doc = r""]
#[doc = r" ### Example of drop reorder"]
#[doc = r""]
#[doc = r" ```rust,edition2018,compile_fail"]
#[doc = r" #![deny(rust_2021_incompatible_closure_captures)]"]
#[doc = r" # #![allow(unused)]"]
#[doc = r""]
#[doc = r" struct FancyInteger(i32);"]
#[doc = r""]
#[doc = r" impl Drop for FancyInteger {"]
#[doc = r" fn drop(&mut self) {"]
#[doc = r#" println!("Just dropped {}", self.0);"#]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" struct Point { x: FancyInteger, y: FancyInteger }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" let p = Point { x: FancyInteger(10), y: FancyInteger(20) };"]
#[doc = r""]
#[doc = r" let c = || {"]
#[doc = r" let x = p.x;"]
#[doc = r" };"]
#[doc = r""]
#[doc = r" c();"]
#[doc = r""]
#[doc = r" // ... More code ..."]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In the above example, `p.y` will be dropped at the end of `f` instead of"]
#[doc = r" with `c` in Rust 2021."]
#[doc = r""]
#[doc = r" ### Example of auto-trait"]
#[doc = r""]
#[doc = r" ```rust,edition2018,compile_fail"]
#[doc = r" #![deny(rust_2021_incompatible_closure_captures)]"]
#[doc = r" use std::thread;"]
#[doc = r""]
#[doc = r" struct Pointer(*mut i32);"]
#[doc = r" unsafe impl Send for Pointer {}"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" let mut f = 10;"]
#[doc = r" let fptr = Pointer(&mut f as *mut i32);"]
#[doc = r" thread::spawn(move || unsafe {"]
#[doc = r" *fptr.0 = 20;"]
#[doc = r" });"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" In the above example, only `fptr.0` is captured in Rust 2021."]
#[doc = r" The field is of type `*mut i32`, which doesn't implement `Send`,"]
#[doc =
r" making the code invalid as the field cannot be sent between threads safely."]
pub static RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES: &crate::Lint =
&crate::Lint {
name: "RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES",
default_level: crate::Allow,
desc: "detects closures affected by Rust 2021 changes",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionSemanticsChange(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2021,
page_slug: "disjoint-capture-in-closures",
}),
explain_reason: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3344/// The `rust_2021_incompatible_closure_captures` lint detects variables that aren't completely
3345 /// captured in Rust 2021, such that the `Drop` order of their fields may differ between
3346 /// Rust 2018 and 2021.
3347 ///
3348 /// It can also detect when a variable implements a trait like `Send`, but one of its fields does not,
3349 /// and the field is captured by a closure and used with the assumption that said field implements
3350 /// the same trait as the root variable.
3351 ///
3352 /// ### Example of drop reorder
3353 ///
3354 /// ```rust,edition2018,compile_fail
3355 /// #![deny(rust_2021_incompatible_closure_captures)]
3356 /// # #![allow(unused)]
3357 ///
3358 /// struct FancyInteger(i32);
3359 ///
3360 /// impl Drop for FancyInteger {
3361 /// fn drop(&mut self) {
3362 /// println!("Just dropped {}", self.0);
3363 /// }
3364 /// }
3365 ///
3366 /// struct Point { x: FancyInteger, y: FancyInteger }
3367 ///
3368 /// fn main() {
3369 /// let p = Point { x: FancyInteger(10), y: FancyInteger(20) };
3370 ///
3371 /// let c = || {
3372 /// let x = p.x;
3373 /// };
3374 ///
3375 /// c();
3376 ///
3377 /// // ... More code ...
3378 /// }
3379 /// ```
3380 ///
3381 /// {{produces}}
3382 ///
3383 /// ### Explanation
3384 ///
3385 /// In the above example, `p.y` will be dropped at the end of `f` instead of
3386 /// with `c` in Rust 2021.
3387 ///
3388 /// ### Example of auto-trait
3389 ///
3390 /// ```rust,edition2018,compile_fail
3391 /// #![deny(rust_2021_incompatible_closure_captures)]
3392 /// use std::thread;
3393 ///
3394 /// struct Pointer(*mut i32);
3395 /// unsafe impl Send for Pointer {}
3396 ///
3397 /// fn main() {
3398 /// let mut f = 10;
3399 /// let fptr = Pointer(&mut f as *mut i32);
3400 /// thread::spawn(move || unsafe {
3401 /// *fptr.0 = 20;
3402 /// });
3403 /// }
3404 /// ```
3405 ///
3406 /// {{produces}}
3407 ///
3408 /// ### Explanation
3409 ///
3410 /// In the above example, only `fptr.0` is captured in Rust 2021.
3411 /// The field is of type `*mut i32`, which doesn't implement `Send`,
3412 /// making the code invalid as the field cannot be sent between threads safely.
3413pub RUST_2021_INCOMPATIBLE_CLOSURE_CAPTURES,
3414 Allow,
3415"detects closures affected by Rust 2021 changes",
3416 @future_incompatible = FutureIncompatibleInfo {
3417 reason: fcw!(EditionSemanticsChange 2021 "disjoint-capture-in-closures"),
3418 explain_reason: false,
3419 };
3420}34213422pub struct UnusedDocComment;
#[automatically_derived]
impl ::core::marker::Copy for UnusedDocComment { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for UnusedDocComment { }
#[automatically_derived]
impl ::core::clone::Clone for UnusedDocComment {
#[inline]
fn clone(&self) -> UnusedDocComment { *self }
}
impl crate::LintPass for UnusedDocComment {
fn name(&self) -> &'static str { "UnusedDocComment" }
fn get_lints(&self) -> crate::LintVec {
::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[UNUSED_DOC_COMMENTS]))
}
}
impl UnusedDocComment {
#[allow(unused)]
pub fn lint_vec() -> crate::LintVec {
::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[UNUSED_DOC_COMMENTS]))
}
}declare_lint_pass!(UnusedDocComment => [UNUSED_DOC_COMMENTS]);
34233424#[doc =
r" The `missing_abi` lint detects cases where the ABI is omitted from"]
#[doc = r" `extern` declarations."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(missing_abi)]"]
#[doc = r""]
#[doc = r" extern fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" For historic reasons, Rust implicitly selects `C` as the default ABI for"]
#[doc =
r" `extern` declarations. [Other ABIs] like `C-unwind` and `system` have"]
#[doc =
r" been added since then, and especially with their addition seeing the ABI"]
#[doc = r" easily makes code review easier."]
#[doc = r""]
#[doc =
r" [Other ABIs]: https://doc.rust-lang.org/reference/items/external-blocks.html#abi"]
pub static MISSING_ABI: &crate::Lint =
&crate::Lint {
name: "MISSING_ABI",
default_level: crate::Warn,
desc: "No declared ABI for extern declaration",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3425/// The `missing_abi` lint detects cases where the ABI is omitted from
3426 /// `extern` declarations.
3427 ///
3428 /// ### Example
3429 ///
3430 /// ```rust,compile_fail
3431 /// #![deny(missing_abi)]
3432 ///
3433 /// extern fn foo() {}
3434 /// ```
3435 ///
3436 /// {{produces}}
3437 ///
3438 /// ### Explanation
3439 ///
3440 /// For historic reasons, Rust implicitly selects `C` as the default ABI for
3441 /// `extern` declarations. [Other ABIs] like `C-unwind` and `system` have
3442 /// been added since then, and especially with their addition seeing the ABI
3443 /// easily makes code review easier.
3444 ///
3445 /// [Other ABIs]: https://doc.rust-lang.org/reference/items/external-blocks.html#abi
3446pub MISSING_ABI,
3447 Warn,
3448"No declared ABI for extern declaration"
3449}34503451#[doc =
r" The `invalid_doc_attributes` lint detects when the `#[doc(...)]` is"]
#[doc = r" misused."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(warnings)]"]
#[doc = r""]
#[doc = r" pub mod submodule {"]
#[doc = r" #![doc(test(no_crate_inject))]"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Previously, incorrect usage of the `#[doc(..)]` attribute was not"]
#[doc =
r" being validated. Usually these should be rejected as a hard error,"]
#[doc = r" but this lint was introduced to avoid breaking any existing"]
#[doc = r" crates which included them."]
pub static INVALID_DOC_ATTRIBUTES: &crate::Lint =
&crate::Lint {
name: "INVALID_DOC_ATTRIBUTES",
default_level: crate::Warn,
desc: "detects invalid `#[doc(...)]` attributes",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3452/// The `invalid_doc_attributes` lint detects when the `#[doc(...)]` is
3453 /// misused.
3454 ///
3455 /// ### Example
3456 ///
3457 /// ```rust,compile_fail
3458 /// #![deny(warnings)]
3459 ///
3460 /// pub mod submodule {
3461 /// #![doc(test(no_crate_inject))]
3462 /// }
3463 /// ```
3464 ///
3465 /// {{produces}}
3466 ///
3467 /// ### Explanation
3468 ///
3469 /// Previously, incorrect usage of the `#[doc(..)]` attribute was not
3470 /// being validated. Usually these should be rejected as a hard error,
3471 /// but this lint was introduced to avoid breaking any existing
3472 /// crates which included them.
3473pub INVALID_DOC_ATTRIBUTES,
3474 Warn,
3475"detects invalid `#[doc(...)]` attributes",
3476}34773478#[doc =
r" The `rust_2021_incompatible_or_patterns` lint detects usage of old versions of or-patterns."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2018,compile_fail"]
#[doc = r" #![deny(rust_2021_incompatible_or_patterns)]"]
#[doc = r""]
#[doc = r" macro_rules! match_any {"]
#[doc =
r" ( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => {"]
#[doc = r" match $expr {"]
#[doc = r" $("]
#[doc = r" $( $pat => $expr_arm, )+"]
#[doc = r" )+"]
#[doc = r" }"]
#[doc = r" };"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" let result: Result<i64, i32> = Err(42);"]
#[doc =
r" let int: i64 = match_any!(result, Ok(i) | Err(i) => i.into());"]
#[doc = r" assert_eq!(int, 42);"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In Rust 2021, the `pat` matcher will match additional patterns, which include the `|` character."]
pub static RUST_2021_INCOMPATIBLE_OR_PATTERNS: &crate::Lint =
&crate::Lint {
name: "RUST_2021_INCOMPATIBLE_OR_PATTERNS",
default_level: crate::Allow,
desc: "detects usage of old versions of or-patterns",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2021,
page_slug: "or-patterns-macro-rules",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3479/// The `rust_2021_incompatible_or_patterns` lint detects usage of old versions of or-patterns.
3480 ///
3481 /// ### Example
3482 ///
3483 /// ```rust,edition2018,compile_fail
3484 /// #![deny(rust_2021_incompatible_or_patterns)]
3485 ///
3486 /// macro_rules! match_any {
3487 /// ( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => {
3488 /// match $expr {
3489 /// $(
3490 /// $( $pat => $expr_arm, )+
3491 /// )+
3492 /// }
3493 /// };
3494 /// }
3495 ///
3496 /// fn main() {
3497 /// let result: Result<i64, i32> = Err(42);
3498 /// let int: i64 = match_any!(result, Ok(i) | Err(i) => i.into());
3499 /// assert_eq!(int, 42);
3500 /// }
3501 /// ```
3502 ///
3503 /// {{produces}}
3504 ///
3505 /// ### Explanation
3506 ///
3507 /// In Rust 2021, the `pat` matcher will match additional patterns, which include the `|` character.
3508pub RUST_2021_INCOMPATIBLE_OR_PATTERNS,
3509 Allow,
3510"detects usage of old versions of or-patterns",
3511 @future_incompatible = FutureIncompatibleInfo {
3512 reason: fcw!(EditionError 2021 "or-patterns-macro-rules"),
3513 };
3514}35153516#[doc =
r" The `rust_2021_prelude_collisions` lint detects the usage of trait methods which are ambiguous"]
#[doc = r" with traits added to the prelude in future editions."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2018,compile_fail"]
#[doc = r" #![deny(rust_2021_prelude_collisions)]"]
#[doc = r""]
#[doc = r" trait Foo {"]
#[doc = r" fn try_into(self) -> Result<String, !>;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl Foo for &str {"]
#[doc = r" fn try_into(self) -> Result<String, !> {"]
#[doc = r" Ok(String::from(self))"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r#" let x: String = "3".try_into().unwrap();"#]
#[doc = r" // ^^^^^^^^"]
#[doc =
r" // This call to try_into matches both Foo::try_into and TryInto::try_into as"]
#[doc =
r" // `TryInto` has been added to the Rust prelude in 2021 edition."]
#[doc = r#" println!("{x}");"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In Rust 2021, one of the important introductions is the [prelude changes], which add"]
#[doc =
r" `TryFrom`, `TryInto`, and `FromIterator` into the standard library's prelude. Since this"]
#[doc =
r" results in an ambiguity as to which method/function to call when an existing `try_into`"]
#[doc =
r" method is called via dot-call syntax or a `try_from`/`from_iter` associated function"]
#[doc = r" is called directly on a type."]
#[doc = r""]
#[doc =
r" [prelude changes]: https://blog.rust-lang.org/inside-rust/2021/03/04/planning-rust-2021.html#prelude-changes"]
pub static RUST_2021_PRELUDE_COLLISIONS: &crate::Lint =
&crate::Lint {
name: "RUST_2021_PRELUDE_COLLISIONS",
default_level: crate::Allow,
desc: "detects the usage of trait methods which are ambiguous with traits added to the \
prelude in future editions",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2021,
page_slug: "prelude",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3517/// The `rust_2021_prelude_collisions` lint detects the usage of trait methods which are ambiguous
3518 /// with traits added to the prelude in future editions.
3519 ///
3520 /// ### Example
3521 ///
3522 /// ```rust,edition2018,compile_fail
3523 /// #![deny(rust_2021_prelude_collisions)]
3524 ///
3525 /// trait Foo {
3526 /// fn try_into(self) -> Result<String, !>;
3527 /// }
3528 ///
3529 /// impl Foo for &str {
3530 /// fn try_into(self) -> Result<String, !> {
3531 /// Ok(String::from(self))
3532 /// }
3533 /// }
3534 ///
3535 /// fn main() {
3536 /// let x: String = "3".try_into().unwrap();
3537 /// // ^^^^^^^^
3538 /// // This call to try_into matches both Foo::try_into and TryInto::try_into as
3539 /// // `TryInto` has been added to the Rust prelude in 2021 edition.
3540 /// println!("{x}");
3541 /// }
3542 /// ```
3543 ///
3544 /// {{produces}}
3545 ///
3546 /// ### Explanation
3547 ///
3548 /// In Rust 2021, one of the important introductions is the [prelude changes], which add
3549 /// `TryFrom`, `TryInto`, and `FromIterator` into the standard library's prelude. Since this
3550 /// results in an ambiguity as to which method/function to call when an existing `try_into`
3551 /// method is called via dot-call syntax or a `try_from`/`from_iter` associated function
3552 /// is called directly on a type.
3553 ///
3554 /// [prelude changes]: https://blog.rust-lang.org/inside-rust/2021/03/04/planning-rust-2021.html#prelude-changes
3555pub RUST_2021_PRELUDE_COLLISIONS,
3556 Allow,
3557"detects the usage of trait methods which are ambiguous with traits added to the \
3558 prelude in future editions",
3559 @future_incompatible = FutureIncompatibleInfo {
3560 reason: fcw!(EditionError 2021 "prelude"),
3561 };
3562}35633564#[doc =
r" The `rust_2024_prelude_collisions` lint detects the usage of trait methods which are ambiguous"]
#[doc = r" with traits added to the prelude in future editions."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2021,compile_fail"]
#[doc = r" #![deny(rust_2024_prelude_collisions)]"]
#[doc = r" trait Meow {"]
#[doc = r" fn poll(&self) {}"]
#[doc = r" }"]
#[doc = r" impl<T> Meow for T {}"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" core::pin::pin!(async {}).poll();"]
#[doc = r" // ^^^^^^"]
#[doc =
r" // This call to try_into matches both Future::poll and Meow::poll as"]
#[doc =
r" // `Future` has been added to the Rust prelude in 2024 edition."]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Rust 2024, introduces two new additions to the standard library's prelude:"]
#[doc =
r" `Future` and `IntoFuture`. This results in an ambiguity as to which method/function"]
#[doc =
r" to call when an existing `poll`/`into_future` method is called via dot-call syntax or"]
#[doc =
r" a `poll`/`into_future` associated function is called directly on a type."]
#[doc = r""]
pub static RUST_2024_PRELUDE_COLLISIONS: &crate::Lint =
&crate::Lint {
name: "RUST_2024_PRELUDE_COLLISIONS",
default_level: crate::Allow,
desc: "detects the usage of trait methods which are ambiguous with traits added to the \
prelude in future editions",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "prelude",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3565/// The `rust_2024_prelude_collisions` lint detects the usage of trait methods which are ambiguous
3566 /// with traits added to the prelude in future editions.
3567 ///
3568 /// ### Example
3569 ///
3570 /// ```rust,edition2021,compile_fail
3571 /// #![deny(rust_2024_prelude_collisions)]
3572 /// trait Meow {
3573 /// fn poll(&self) {}
3574 /// }
3575 /// impl<T> Meow for T {}
3576 ///
3577 /// fn main() {
3578 /// core::pin::pin!(async {}).poll();
3579 /// // ^^^^^^
3580 /// // This call to try_into matches both Future::poll and Meow::poll as
3581 /// // `Future` has been added to the Rust prelude in 2024 edition.
3582 /// }
3583 /// ```
3584 ///
3585 /// {{produces}}
3586 ///
3587 /// ### Explanation
3588 ///
3589 /// Rust 2024, introduces two new additions to the standard library's prelude:
3590 /// `Future` and `IntoFuture`. This results in an ambiguity as to which method/function
3591 /// to call when an existing `poll`/`into_future` method is called via dot-call syntax or
3592 /// a `poll`/`into_future` associated function is called directly on a type.
3593 ///
3594pub RUST_2024_PRELUDE_COLLISIONS,
3595 Allow,
3596"detects the usage of trait methods which are ambiguous with traits added to the \
3597 prelude in future editions",
3598 @future_incompatible = FutureIncompatibleInfo {
3599 reason: fcw!(EditionError 2024 "prelude"),
3600 };
3601}36023603#[doc =
r" The `rust_2021_prefixes_incompatible_syntax` lint detects identifiers that will be parsed as a"]
#[doc = r" prefix instead in Rust 2021."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2018,compile_fail"]
#[doc = r" #![deny(rust_2021_prefixes_incompatible_syntax)]"]
#[doc = r""]
#[doc = r" macro_rules! m {"]
#[doc = r" (z $x:expr) => ();"]
#[doc = r" }"]
#[doc = r""]
#[doc = r#" m!(z"hey");"#]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r#" In Rust 2015 and 2018, `z"hey"` is two tokens: the identifier `z`"#]
#[doc =
r#" followed by the string literal `"hey"`. In Rust 2021, the `z` is"#]
#[doc = r#" considered a prefix for `"hey"`."#]
#[doc = r""]
#[doc =
r#" This lint suggests to add whitespace between the `z` and `"hey"` tokens"#]
#[doc = r" to keep them separated in Rust 2021."]
#[allow(rustdoc::invalid_rust_codeblocks)]
pub static RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX: &crate::Lint =
&crate::Lint {
name: "RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX",
default_level: crate::Allow,
desc: "identifiers that will be parsed as a prefix in Rust 2021",
is_externally_loaded: false,
crate_level_only: true,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2021,
page_slug: "reserving-syntax",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3604/// The `rust_2021_prefixes_incompatible_syntax` lint detects identifiers that will be parsed as a
3605 /// prefix instead in Rust 2021.
3606 ///
3607 /// ### Example
3608 ///
3609 /// ```rust,edition2018,compile_fail
3610 /// #![deny(rust_2021_prefixes_incompatible_syntax)]
3611 ///
3612 /// macro_rules! m {
3613 /// (z $x:expr) => ();
3614 /// }
3615 ///
3616 /// m!(z"hey");
3617 /// ```
3618 ///
3619 /// {{produces}}
3620 ///
3621 /// ### Explanation
3622 ///
3623 /// In Rust 2015 and 2018, `z"hey"` is two tokens: the identifier `z`
3624 /// followed by the string literal `"hey"`. In Rust 2021, the `z` is
3625 /// considered a prefix for `"hey"`.
3626 ///
3627 /// This lint suggests to add whitespace between the `z` and `"hey"` tokens
3628 /// to keep them separated in Rust 2021.
3629// Allow this lint -- rustdoc doesn't yet support threading edition into this lint's parser.
3630#[allow(rustdoc::invalid_rust_codeblocks)]
3631pub RUST_2021_PREFIXES_INCOMPATIBLE_SYNTAX,
3632 Allow,
3633"identifiers that will be parsed as a prefix in Rust 2021",
3634 @future_incompatible = FutureIncompatibleInfo {
3635 reason: fcw!(EditionError 2021 "reserving-syntax"),
3636 };
3637 crate_level_only
3638}36393640#[doc =
r" The `unsupported_calling_conventions` lint is output whenever there is a use of the"]
#[doc =
r" `stdcall`, `fastcall`, and `cdecl` calling conventions (or their unwind"]
#[doc =
r" variants) on targets that cannot meaningfully be supported for the requested target."]
#[doc = r""]
#[doc =
r" For example, `stdcall` does not make much sense for a x86_64 or, more apparently, powerpc"]
#[doc =
r" code, because this calling convention was never specified for those targets."]
#[doc = r""]
#[doc =
r" Historically, MSVC toolchains have fallen back to the regular C calling convention for"]
#[doc =
r" targets other than x86, but Rust doesn't really see a similar need to introduce a similar"]
#[doc = r" hack across many more targets."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs specific targets)"]
#[doc = r#" extern "stdcall" fn stdcall() {}"#]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: use of calling convention not supported on this target"]
#[doc = r" --> $DIR/unsupported.rs:39:1"]
#[doc = r" |"]
#[doc = r#" LL | extern "stdcall" fn stdcall() {}"#]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc =
r" = note: `#[warn(unsupported_calling_conventions)]` on by default"]
#[doc =
r" = warning: this was previously accepted by the compiler but is being phased out;"]
#[doc = r" it will become a hard error in a future release!"]
#[doc = r" = note: for more information, see issue ..."]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" On most of the targets, the behaviour of `stdcall` and similar calling conventions is not"]
#[doc =
r" defined at all, but was previously accepted due to a bug in the implementation of the"]
#[doc = r" compiler."]
pub static UNSUPPORTED_CALLING_CONVENTIONS: &crate::Lint =
&crate::Lint {
name: "UNSUPPORTED_CALLING_CONVENTIONS",
default_level: crate::Warn,
desc: "use of unsupported calling convention",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 137018,
}),
report_in_deps: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3641/// The `unsupported_calling_conventions` lint is output whenever there is a use of the
3642 /// `stdcall`, `fastcall`, and `cdecl` calling conventions (or their unwind
3643 /// variants) on targets that cannot meaningfully be supported for the requested target.
3644 ///
3645 /// For example, `stdcall` does not make much sense for a x86_64 or, more apparently, powerpc
3646 /// code, because this calling convention was never specified for those targets.
3647 ///
3648 /// Historically, MSVC toolchains have fallen back to the regular C calling convention for
3649 /// targets other than x86, but Rust doesn't really see a similar need to introduce a similar
3650 /// hack across many more targets.
3651 ///
3652 /// ### Example
3653 ///
3654 /// ```rust,ignore (needs specific targets)
3655 /// extern "stdcall" fn stdcall() {}
3656 /// ```
3657 ///
3658 /// This will produce:
3659 ///
3660 /// ```text
3661 /// warning: use of calling convention not supported on this target
3662 /// --> $DIR/unsupported.rs:39:1
3663 /// |
3664 /// LL | extern "stdcall" fn stdcall() {}
3665 /// | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3666 /// |
3667 /// = note: `#[warn(unsupported_calling_conventions)]` on by default
3668 /// = warning: this was previously accepted by the compiler but is being phased out;
3669 /// it will become a hard error in a future release!
3670 /// = note: for more information, see issue ...
3671 /// ```
3672 ///
3673 /// ### Explanation
3674 ///
3675 /// On most of the targets, the behaviour of `stdcall` and similar calling conventions is not
3676 /// defined at all, but was previously accepted due to a bug in the implementation of the
3677 /// compiler.
3678pub UNSUPPORTED_CALLING_CONVENTIONS,
3679 Warn,
3680"use of unsupported calling convention",
3681 @future_incompatible = FutureIncompatibleInfo {
3682 reason: fcw!(FutureReleaseError #137018),
3683 report_in_deps: false,
3684 };
3685}36863687#[doc =
r" The `unsupported_fn_ptr_calling_conventions` lint is output whenever there is a use of"]
#[doc =
r" a target dependent calling convention on a target that does not support this calling"]
#[doc = r" convention on a function pointer."]
#[doc = r""]
#[doc =
r" For example `stdcall` does not make much sense for a x86_64 or, more apparently, powerpc"]
#[doc =
r" code, because this calling convention was never specified for those targets."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs specific targets)"]
#[doc = r#" fn stdcall_ptr(f: extern "stdcall" fn ()) {"#]
#[doc = r" f()"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r#" warning: the calling convention `"stdcall"` is not supported on this target"#]
#[doc = r" --> $DIR/unsupported.rs:34:15"]
#[doc = r" |"]
#[doc = r#" LL | fn stdcall_ptr(f: extern "stdcall" fn()) {"#]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc =
r" = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!"]
#[doc =
r" = note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>"]
#[doc =
r" = note: `#[warn(unsupported_fn_ptr_calling_conventions)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" On most of the targets the behaviour of `stdcall` and similar calling conventions is not"]
#[doc =
r" defined at all, but was previously accepted due to a bug in the implementation of the"]
#[doc = r" compiler."]
pub static UNSUPPORTED_FN_PTR_CALLING_CONVENTIONS: &crate::Lint =
&crate::Lint {
name: "UNSUPPORTED_FN_PTR_CALLING_CONVENTIONS",
default_level: crate::Warn,
desc: "use of unsupported calling convention for function pointer",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 130260,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3688/// The `unsupported_fn_ptr_calling_conventions` lint is output whenever there is a use of
3689 /// a target dependent calling convention on a target that does not support this calling
3690 /// convention on a function pointer.
3691 ///
3692 /// For example `stdcall` does not make much sense for a x86_64 or, more apparently, powerpc
3693 /// code, because this calling convention was never specified for those targets.
3694 ///
3695 /// ### Example
3696 ///
3697 /// ```rust,ignore (needs specific targets)
3698 /// fn stdcall_ptr(f: extern "stdcall" fn ()) {
3699 /// f()
3700 /// }
3701 /// ```
3702 ///
3703 /// This will produce:
3704 ///
3705 /// ```text
3706 /// warning: the calling convention `"stdcall"` is not supported on this target
3707 /// --> $DIR/unsupported.rs:34:15
3708 /// |
3709 /// LL | fn stdcall_ptr(f: extern "stdcall" fn()) {
3710 /// | ^^^^^^^^^^^^^^^^^^^^^^^^
3711 /// |
3712 /// = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
3713 /// = note: for more information, see issue #130260 <https://github.com/rust-lang/rust/issues/130260>
3714 /// = note: `#[warn(unsupported_fn_ptr_calling_conventions)]` on by default
3715 /// ```
3716 ///
3717 /// ### Explanation
3718 ///
3719 /// On most of the targets the behaviour of `stdcall` and similar calling conventions is not
3720 /// defined at all, but was previously accepted due to a bug in the implementation of the
3721 /// compiler.
3722pub UNSUPPORTED_FN_PTR_CALLING_CONVENTIONS,
3723 Warn,
3724"use of unsupported calling convention for function pointer",
3725 @future_incompatible = FutureIncompatibleInfo {
3726 reason: fcw!(FutureReleaseError #130260),
3727 report_in_deps: true,
3728 };
3729}37303731#[doc =
r" The `break_with_label_and_loop` lint detects labeled `break` expressions with"]
#[doc = r" an unlabeled loop as their value expression."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" 'label: loop {"]
#[doc = r" break 'label loop { break 42; };"]
#[doc = r" };"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In Rust, loops can have a label, and `break` expressions can refer to that label to"]
#[doc =
r" break out of specific loops (and not necessarily the innermost one). `break` expressions"]
#[doc =
r" can also carry a value expression, which can be another loop. A labeled `break` with an"]
#[doc =
r" unlabeled loop as its value expression is easy to confuse with an unlabeled break with"]
#[doc =
r" a labeled loop and is thus discouraged (but allowed for compatibility); use parentheses"]
#[doc =
r" around the loop expression to silence this warning. Unlabeled `break` expressions with"]
#[doc =
r" labeled loops yield a hard error, which can also be silenced by wrapping the expression"]
#[doc = r" in parentheses."]
pub static BREAK_WITH_LABEL_AND_LOOP: &crate::Lint =
&crate::Lint {
name: "BREAK_WITH_LABEL_AND_LOOP",
default_level: crate::Warn,
desc: "`break` expression with label and unlabeled loop as value expression",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3732/// The `break_with_label_and_loop` lint detects labeled `break` expressions with
3733 /// an unlabeled loop as their value expression.
3734 ///
3735 /// ### Example
3736 ///
3737 /// ```rust
3738 /// 'label: loop {
3739 /// break 'label loop { break 42; };
3740 /// };
3741 /// ```
3742 ///
3743 /// {{produces}}
3744 ///
3745 /// ### Explanation
3746 ///
3747 /// In Rust, loops can have a label, and `break` expressions can refer to that label to
3748 /// break out of specific loops (and not necessarily the innermost one). `break` expressions
3749 /// can also carry a value expression, which can be another loop. A labeled `break` with an
3750 /// unlabeled loop as its value expression is easy to confuse with an unlabeled break with
3751 /// a labeled loop and is thus discouraged (but allowed for compatibility); use parentheses
3752 /// around the loop expression to silence this warning. Unlabeled `break` expressions with
3753 /// labeled loops yield a hard error, which can also be silenced by wrapping the expression
3754 /// in parentheses.
3755pub BREAK_WITH_LABEL_AND_LOOP,
3756 Warn,
3757"`break` expression with label and unlabeled loop as value expression"
3758}37593760#[doc =
r" The `non_exhaustive_omitted_patterns` lint aims to help consumers of a `#[non_exhaustive]`"]
#[doc =
r" struct or enum who want to match all of its fields/variants explicitly."]
#[doc = r""]
#[doc =
r" The `#[non_exhaustive]` annotation forces matches to use wildcards, so exhaustiveness"]
#[doc =
r" checking cannot be used to ensure that all fields/variants are matched explicitly. To remedy"]
#[doc =
r" this, this allow-by-default lint warns the user when a match mentions some but not all of"]
#[doc = r" the fields/variants of a `#[non_exhaustive]` struct or enum."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs separate crate)"]
#[doc = r" // crate A"]
#[doc = r" #[non_exhaustive]"]
#[doc = r" pub enum Bar {"]
#[doc = r" A,"]
#[doc = r" B, // added variant in non breaking change"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" // in crate B"]
#[doc = r" #![feature(non_exhaustive_omitted_patterns_lint)]"]
#[doc = r" #[warn(non_exhaustive_omitted_patterns)]"]
#[doc = r" match Bar::A {"]
#[doc = r" Bar::A => {},"]
#[doc = r" _ => {},"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: some variants are not matched explicitly"]
#[doc = r" --> $DIR/reachable-patterns.rs:70:9"]
#[doc = r" |"]
#[doc = r" LL | match Bar::A {"]
#[doc = r" | ^ pattern `Bar::B` not covered"]
#[doc = r" |"]
#[doc = r" note: the lint level is defined here"]
#[doc = r" --> $DIR/reachable-patterns.rs:69:16"]
#[doc = r" |"]
#[doc = r" LL | #[warn(non_exhaustive_omitted_patterns)]"]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc =
r" = help: ensure that all variants are matched explicitly by adding the suggested match arms"]
#[doc =
r" = note: the matched value is of type `Bar` and the `non_exhaustive_omitted_patterns` attribute was found"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" Warning: setting this to `deny` will make upstream non-breaking changes (adding fields or"]
#[doc =
r" variants to a `#[non_exhaustive]` struct or enum) break your crate. This goes against"]
#[doc = r" expected semver behavior."]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Structs and enums tagged with `#[non_exhaustive]` force the user to add a (potentially"]
#[doc =
r" redundant) wildcard when pattern-matching, to allow for future addition of fields or"]
#[doc =
r" variants. The `non_exhaustive_omitted_patterns` lint detects when such a wildcard happens to"]
#[doc =
r" actually catch some fields/variants. In other words, when the match without the wildcard"]
#[doc =
r" would not be exhaustive. This lets the user be informed if new fields/variants were added."]
pub static NON_EXHAUSTIVE_OMITTED_PATTERNS: &crate::Lint =
&crate::Lint {
name: "NON_EXHAUSTIVE_OMITTED_PATTERNS",
default_level: crate::Allow,
desc: "detect when patterns of types marked `non_exhaustive` are missed",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::non_exhaustive_omitted_patterns_lint),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3761/// The `non_exhaustive_omitted_patterns` lint aims to help consumers of a `#[non_exhaustive]`
3762 /// struct or enum who want to match all of its fields/variants explicitly.
3763 ///
3764 /// The `#[non_exhaustive]` annotation forces matches to use wildcards, so exhaustiveness
3765 /// checking cannot be used to ensure that all fields/variants are matched explicitly. To remedy
3766 /// this, this allow-by-default lint warns the user when a match mentions some but not all of
3767 /// the fields/variants of a `#[non_exhaustive]` struct or enum.
3768 ///
3769 /// ### Example
3770 ///
3771 /// ```rust,ignore (needs separate crate)
3772 /// // crate A
3773 /// #[non_exhaustive]
3774 /// pub enum Bar {
3775 /// A,
3776 /// B, // added variant in non breaking change
3777 /// }
3778 ///
3779 /// // in crate B
3780 /// #![feature(non_exhaustive_omitted_patterns_lint)]
3781 /// #[warn(non_exhaustive_omitted_patterns)]
3782 /// match Bar::A {
3783 /// Bar::A => {},
3784 /// _ => {},
3785 /// }
3786 /// ```
3787 ///
3788 /// This will produce:
3789 ///
3790 /// ```text
3791 /// warning: some variants are not matched explicitly
3792 /// --> $DIR/reachable-patterns.rs:70:9
3793 /// |
3794 /// LL | match Bar::A {
3795 /// | ^ pattern `Bar::B` not covered
3796 /// |
3797 /// note: the lint level is defined here
3798 /// --> $DIR/reachable-patterns.rs:69:16
3799 /// |
3800 /// LL | #[warn(non_exhaustive_omitted_patterns)]
3801 /// | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3802 /// = help: ensure that all variants are matched explicitly by adding the suggested match arms
3803 /// = note: the matched value is of type `Bar` and the `non_exhaustive_omitted_patterns` attribute was found
3804 /// ```
3805 ///
3806 /// Warning: setting this to `deny` will make upstream non-breaking changes (adding fields or
3807 /// variants to a `#[non_exhaustive]` struct or enum) break your crate. This goes against
3808 /// expected semver behavior.
3809 ///
3810 /// ### Explanation
3811 ///
3812 /// Structs and enums tagged with `#[non_exhaustive]` force the user to add a (potentially
3813 /// redundant) wildcard when pattern-matching, to allow for future addition of fields or
3814 /// variants. The `non_exhaustive_omitted_patterns` lint detects when such a wildcard happens to
3815 /// actually catch some fields/variants. In other words, when the match without the wildcard
3816 /// would not be exhaustive. This lets the user be informed if new fields/variants were added.
3817pub NON_EXHAUSTIVE_OMITTED_PATTERNS,
3818 Allow,
3819"detect when patterns of types marked `non_exhaustive` are missed",
3820 @feature_gate = non_exhaustive_omitted_patterns_lint;
3821}38223823#[doc =
r" The `text_direction_codepoint_in_comment` lint detects Unicode codepoints in comments that"]
#[doc =
r" change the visual representation of text on screen in a way that does not correspond to"]
#[doc = r" their on memory representation."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(text_direction_codepoint_in_comment)]"]
#[doc = r" fn main() {"]
#[doc = " println!(\"{:?}\"); // '\u{202E}');"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Unicode allows changing the visual flow of text on screen in order to support scripts that"]
#[doc =
r" are written right-to-left, but a specially crafted comment can make code that will be"]
#[doc =
r" compiled appear to be part of a comment, depending on the software used to read the code."]
#[doc =
r" To avoid potential problems or confusion, such as in CVE-2021-42574, by default we deny"]
#[doc = r" their use."]
pub static TEXT_DIRECTION_CODEPOINT_IN_COMMENT: &crate::Lint =
&crate::Lint {
name: "TEXT_DIRECTION_CODEPOINT_IN_COMMENT",
default_level: crate::Deny,
desc: "invisible directionality-changing codepoints in comment",
is_externally_loaded: false,
crate_level_only: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3824/// The `text_direction_codepoint_in_comment` lint detects Unicode codepoints in comments that
3825 /// change the visual representation of text on screen in a way that does not correspond to
3826 /// their on memory representation.
3827 ///
3828 /// ### Example
3829 ///
3830 /// ```rust,compile_fail
3831 /// #![deny(text_direction_codepoint_in_comment)]
3832 /// fn main() {
3833#[doc = " println!(\"{:?}\"); // '\u{202E}');"]
3834/// }
3835 /// ```
3836 ///
3837 /// {{produces}}
3838 ///
3839 /// ### Explanation
3840 ///
3841 /// Unicode allows changing the visual flow of text on screen in order to support scripts that
3842 /// are written right-to-left, but a specially crafted comment can make code that will be
3843 /// compiled appear to be part of a comment, depending on the software used to read the code.
3844 /// To avoid potential problems or confusion, such as in CVE-2021-42574, by default we deny
3845 /// their use.
3846pub TEXT_DIRECTION_CODEPOINT_IN_COMMENT,
3847 Deny,
3848"invisible directionality-changing codepoints in comment",
3849 crate_level_only
3850}38513852#[doc =
r" The `text_direction_codepoint_in_literal` lint detects Unicode codepoints that change the"]
#[doc =
r" visual representation of text on screen in a way that does not correspond to their on"]
#[doc = r" memory representation."]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The unicode characters `\u{202A}`, `\u{202B}`, `\u{202D}`, `\u{202E}`, `\u{2066}`,"]
#[doc =
r" `\u{2067}`, `\u{2068}`, `\u{202C}` and `\u{2069}` make the flow of text on screen change"]
#[doc =
r#" its direction on software that supports these codepoints. This makes the text "abc" display"#]
#[doc =
r#" as "cba" on screen. By leveraging software that supports these, people can write specially"#]
#[doc =
r" crafted literals that make the surrounding code seem like it's performing one action, when"]
#[doc =
r" in reality it is performing another. Because of this, we proactively lint against their"]
#[doc = r" presence to avoid surprises."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(text_direction_codepoint_in_literal)]"]
#[doc = r" fn main() {"]
#[doc = " println!(\"{:?}\", '\u{202E}');"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
pub static TEXT_DIRECTION_CODEPOINT_IN_LITERAL: &crate::Lint =
&crate::Lint {
name: "TEXT_DIRECTION_CODEPOINT_IN_LITERAL",
default_level: crate::Deny,
desc: "detect special Unicode codepoints that affect the visual representation of text on screen, \
changing the direction in which text flows",
is_externally_loaded: false,
crate_level_only: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3853/// The `text_direction_codepoint_in_literal` lint detects Unicode codepoints that change the
3854 /// visual representation of text on screen in a way that does not correspond to their on
3855 /// memory representation.
3856 ///
3857 /// ### Explanation
3858 ///
3859 /// The unicode characters `\u{202A}`, `\u{202B}`, `\u{202D}`, `\u{202E}`, `\u{2066}`,
3860 /// `\u{2067}`, `\u{2068}`, `\u{202C}` and `\u{2069}` make the flow of text on screen change
3861 /// its direction on software that supports these codepoints. This makes the text "abc" display
3862 /// as "cba" on screen. By leveraging software that supports these, people can write specially
3863 /// crafted literals that make the surrounding code seem like it's performing one action, when
3864 /// in reality it is performing another. Because of this, we proactively lint against their
3865 /// presence to avoid surprises.
3866 ///
3867 /// ### Example
3868 ///
3869 /// ```rust,compile_fail
3870 /// #![deny(text_direction_codepoint_in_literal)]
3871 /// fn main() {
3872// ` - convince tidy that backticks match
3873#[doc = " println!(\"{:?}\", '\u{202E}');"]
3874// `
3875/// }
3876 /// ```
3877 ///
3878 /// {{produces}}
3879 ///
3880pub TEXT_DIRECTION_CODEPOINT_IN_LITERAL,
3881 Deny,
3882"detect special Unicode codepoints that affect the visual representation of text on screen, \
3883 changing the direction in which text flows",
3884 crate_level_only
3885}38863887#[doc =
r" The `duplicate_macro_attributes` lint detects when a `#[test]`-like built-in macro"]
#[doc =
r" attribute is duplicated on an item. This lint may trigger on `bench`, `cfg_eval`, `test`"]
#[doc = r" and `test_case`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs --test)"]
#[doc = r" #[test]"]
#[doc = r" #[test]"]
#[doc = r" fn foo() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: duplicated attribute"]
#[doc = r" --> src/lib.rs:2:1"]
#[doc = r" |"]
#[doc = r" 2 | #[test]"]
#[doc = r" | ^^^^^^^"]
#[doc = r" |"]
#[doc = r" = note: `#[warn(duplicate_macro_attributes)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" A duplicated attribute may erroneously originate from a copy-paste and the effect of it"]
#[doc = r" being duplicated may not be obvious or desirable."]
#[doc = r""]
#[doc =
r" For instance, doubling the `#[test]` attributes registers the test to be run twice with no"]
#[doc = r" change to its environment."]
#[doc = r""]
#[doc = r" [issue #90979]: https://github.com/rust-lang/rust/issues/90979"]
pub static DUPLICATE_MACRO_ATTRIBUTES: &crate::Lint =
&crate::Lint {
name: "DUPLICATE_MACRO_ATTRIBUTES",
default_level: crate::Warn,
desc: "duplicated attribute",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3888/// The `duplicate_macro_attributes` lint detects when a `#[test]`-like built-in macro
3889 /// attribute is duplicated on an item. This lint may trigger on `bench`, `cfg_eval`, `test`
3890 /// and `test_case`.
3891 ///
3892 /// ### Example
3893 ///
3894 /// ```rust,ignore (needs --test)
3895 /// #[test]
3896 /// #[test]
3897 /// fn foo() {}
3898 /// ```
3899 ///
3900 /// This will produce:
3901 ///
3902 /// ```text
3903 /// warning: duplicated attribute
3904 /// --> src/lib.rs:2:1
3905 /// |
3906 /// 2 | #[test]
3907 /// | ^^^^^^^
3908 /// |
3909 /// = note: `#[warn(duplicate_macro_attributes)]` on by default
3910 /// ```
3911 ///
3912 /// ### Explanation
3913 ///
3914 /// A duplicated attribute may erroneously originate from a copy-paste and the effect of it
3915 /// being duplicated may not be obvious or desirable.
3916 ///
3917 /// For instance, doubling the `#[test]` attributes registers the test to be run twice with no
3918 /// change to its environment.
3919 ///
3920 /// [issue #90979]: https://github.com/rust-lang/rust/issues/90979
3921pub DUPLICATE_MACRO_ATTRIBUTES,
3922 Warn,
3923"duplicated attribute"
3924}39253926#[doc =
r" The `deprecated_where_clause_location` lint detects when a where clause in front of the equals"]
#[doc = r" in an associated type."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" trait Trait {"]
#[doc = r" type Assoc<'a> where Self: 'a;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl Trait for () {"]
#[doc = r" type Assoc<'a> where Self: 'a = ();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" The preferred location for where clauses on associated types"]
#[doc =
r" is after the type. However, for most of generic associated types development,"]
#[doc =
r" it was only accepted before the equals. To provide a transition period and"]
#[doc =
r" further evaluate this change, both are currently accepted. At some point in"]
#[doc =
r" the future, this may be disallowed at an edition boundary; but, that is"]
#[doc = r" undecided currently."]
pub static DEPRECATED_WHERE_CLAUSE_LOCATION: &crate::Lint =
&crate::Lint {
name: "DEPRECATED_WHERE_CLAUSE_LOCATION",
default_level: crate::Warn,
desc: "deprecated where clause location",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3927/// The `deprecated_where_clause_location` lint detects when a where clause in front of the equals
3928 /// in an associated type.
3929 ///
3930 /// ### Example
3931 ///
3932 /// ```rust
3933 /// trait Trait {
3934 /// type Assoc<'a> where Self: 'a;
3935 /// }
3936 ///
3937 /// impl Trait for () {
3938 /// type Assoc<'a> where Self: 'a = ();
3939 /// }
3940 /// ```
3941 ///
3942 /// {{produces}}
3943 ///
3944 /// ### Explanation
3945 ///
3946 /// The preferred location for where clauses on associated types
3947 /// is after the type. However, for most of generic associated types development,
3948 /// it was only accepted before the equals. To provide a transition period and
3949 /// further evaluate this change, both are currently accepted. At some point in
3950 /// the future, this may be disallowed at an edition boundary; but, that is
3951 /// undecided currently.
3952pub DEPRECATED_WHERE_CLAUSE_LOCATION,
3953 Warn,
3954"deprecated where clause location"
3955}39563957#[doc =
r" The `test_unstable_lint` lint tests unstable lints and is perma-unstable."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc =
r" // This lint is intentionally used to test the compiler's behavior"]
#[doc =
r" // when an unstable lint is enabled without the corresponding feature gate."]
#[doc = r" #![allow(test_unstable_lint)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In order to test the behavior of unstable lints, a permanently-unstable"]
#[doc =
r" lint is required. This lint can be used to trigger warnings and errors"]
#[doc = r" from the compiler related to unstable lints."]
pub static TEST_UNSTABLE_LINT: &crate::Lint =
&crate::Lint {
name: "TEST_UNSTABLE_LINT",
default_level: crate::Deny,
desc: "this unstable lint is only for testing",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::test_unstable_lint),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3958/// The `test_unstable_lint` lint tests unstable lints and is perma-unstable.
3959 ///
3960 /// ### Example
3961 ///
3962 /// ```rust
3963 /// // This lint is intentionally used to test the compiler's behavior
3964 /// // when an unstable lint is enabled without the corresponding feature gate.
3965 /// #![allow(test_unstable_lint)]
3966 /// ```
3967 ///
3968 /// {{produces}}
3969 ///
3970 /// ### Explanation
3971 ///
3972 /// In order to test the behavior of unstable lints, a permanently-unstable
3973 /// lint is required. This lint can be used to trigger warnings and errors
3974 /// from the compiler related to unstable lints.
3975pub TEST_UNSTABLE_LINT,
3976 Deny,
3977"this unstable lint is only for testing",
3978 @feature_gate = test_unstable_lint;
3979}39803981#[doc =
r" The `ffi_unwind_calls` lint detects calls to foreign functions or function pointers with"]
#[doc = r" `C-unwind` or other FFI-unwind ABIs."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![warn(ffi_unwind_calls)]"]
#[doc = r""]
#[doc = r#" unsafe extern "C-unwind" {"#]
#[doc = r" fn foo();"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn bar() {"]
#[doc = r" unsafe { foo(); }"]
#[doc = r#" let ptr: unsafe extern "C-unwind" fn() = foo;"#]
#[doc = r" unsafe { ptr(); }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" For crates containing such calls, if they are compiled with `-C panic=unwind` then the"]
#[doc =
r" produced library cannot be linked with crates compiled with `-C panic=abort`. For crates"]
#[doc =
r" that desire this ability it is therefore necessary to avoid such calls."]
pub static FFI_UNWIND_CALLS: &crate::Lint =
&crate::Lint {
name: "FFI_UNWIND_CALLS",
default_level: crate::Allow,
desc: "call to foreign functions or function pointers with FFI-unwind ABI",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
3982/// The `ffi_unwind_calls` lint detects calls to foreign functions or function pointers with
3983 /// `C-unwind` or other FFI-unwind ABIs.
3984 ///
3985 /// ### Example
3986 ///
3987 /// ```rust
3988 /// #![warn(ffi_unwind_calls)]
3989 ///
3990 /// unsafe extern "C-unwind" {
3991 /// fn foo();
3992 /// }
3993 ///
3994 /// fn bar() {
3995 /// unsafe { foo(); }
3996 /// let ptr: unsafe extern "C-unwind" fn() = foo;
3997 /// unsafe { ptr(); }
3998 /// }
3999 /// ```
4000 ///
4001 /// {{produces}}
4002 ///
4003 /// ### Explanation
4004 ///
4005 /// For crates containing such calls, if they are compiled with `-C panic=unwind` then the
4006 /// produced library cannot be linked with crates compiled with `-C panic=abort`. For crates
4007 /// that desire this ability it is therefore necessary to avoid such calls.
4008pub FFI_UNWIND_CALLS,
4009 Allow,
4010"call to foreign functions or function pointers with FFI-unwind ABI"
4011}40124013#[doc = r" The `linker_messages` lint forwards warnings from the linker."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs CLI args, platform-specific)"]
#[doc = r" #[warn(linker_messages)]"]
#[doc = r#" extern "C" {"#]
#[doc = r" fn foo();"]
#[doc = r" }"]
#[doc = r" fn main () { unsafe { foo(); } }"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" On Linux, using `gcc -Wl,--warn-unresolved-symbols` as a linker, this will produce"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: linker stderr: rust-lld: undefined symbol: foo"]
#[doc = r" >>> referenced by rust_out.69edbd30df4ae57d-cgu.0"]
#[doc =
r" >>> rust_out.rust_out.69edbd30df4ae57d-cgu.0.rcgu.o:(rust_out::main::h3a90094b06757803)"]
#[doc = r" |"]
#[doc = r" note: the lint level is defined here"]
#[doc = r" --> warn.rs:1:9"]
#[doc = r" |"]
#[doc = r" 1 | #![warn(linker_messages)]"]
#[doc = r" | ^^^^^^^^^^^^^^^"]
#[doc = r" warning: 1 warning emitted"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Linkers emit platform-specific and program-specific warnings that cannot be predicted in"]
#[doc =
r" advance by the Rust compiler. Such messages are ignored by default for now. While linker"]
#[doc =
r" warnings could be very useful they have been ignored for many years by essentially all"]
#[doc =
r" users, so we need to do a bit more work than just surfacing their text to produce a clear"]
#[doc =
r" and actionable warning of similar quality to our other diagnostics. See this tracking"]
#[doc =
r" issue for more details: <https://github.com/rust-lang/rust/issues/136096>."]
pub static LINKER_MESSAGES: &crate::Lint =
&crate::Lint {
name: "LINKER_MESSAGES",
default_level: crate::Warn,
desc: "warnings emitted at runtime by the target-specific linker program",
is_externally_loaded: false,
ignore_deny_warnings: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4014/// The `linker_messages` lint forwards warnings from the linker.
4015 ///
4016 /// ### Example
4017 ///
4018 /// ```rust,ignore (needs CLI args, platform-specific)
4019 /// #[warn(linker_messages)]
4020 /// extern "C" {
4021 /// fn foo();
4022 /// }
4023 /// fn main () { unsafe { foo(); } }
4024 /// ```
4025 ///
4026 /// On Linux, using `gcc -Wl,--warn-unresolved-symbols` as a linker, this will produce
4027 ///
4028 /// ```text
4029 /// warning: linker stderr: rust-lld: undefined symbol: foo
4030 /// >>> referenced by rust_out.69edbd30df4ae57d-cgu.0
4031 /// >>> rust_out.rust_out.69edbd30df4ae57d-cgu.0.rcgu.o:(rust_out::main::h3a90094b06757803)
4032 /// |
4033 /// note: the lint level is defined here
4034 /// --> warn.rs:1:9
4035 /// |
4036 /// 1 | #![warn(linker_messages)]
4037 /// | ^^^^^^^^^^^^^^^
4038 /// warning: 1 warning emitted
4039 /// ```
4040 ///
4041 /// ### Explanation
4042 ///
4043 /// Linkers emit platform-specific and program-specific warnings that cannot be predicted in
4044 /// advance by the Rust compiler. Such messages are ignored by default for now. While linker
4045 /// warnings could be very useful they have been ignored for many years by essentially all
4046 /// users, so we need to do a bit more work than just surfacing their text to produce a clear
4047 /// and actionable warning of similar quality to our other diagnostics. See this tracking
4048 /// issue for more details: <https://github.com/rust-lang/rust/issues/136096>.
4049pub LINKER_MESSAGES,
4050 Warn,
4051"warnings emitted at runtime by the target-specific linker program",
4052// Linker messages don't live up to the high standard people expect of rustc's errors.
4053 // Prevent `-D warnings` from applying to it.
4054 // It's still possible to pass `-D linker-messages` specifically.
4055ignore_deny_warnings
4056}40574058#[doc =
r" The `linker_info` lint forwards warnings from the linker that are known to be informational-only."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs CLI args, platform-specific)"]
#[doc = r" #[warn(linker_info)]"]
#[doc = r" fn main () {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" On MacOS, using `-C link-arg=-lc` and the default linker, this will produce"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: linker stderr: ld: ignoring duplicate libraries: '-lc'"]
#[doc = r" |"]
#[doc = r" note: the lint level is defined here"]
#[doc = r" --> ex.rs:1:9"]
#[doc = r" |"]
#[doc = r" 1 | #![warn(linker_info)]"]
#[doc = r" | ^^^^^^^^^^^^^^^"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r#" Many linkers are very "chatty" and print lots of information that is not necessarily"#]
#[doc =
r" indicative of an issue. This output has been ignored for many years and is often not"]
#[doc =
r" actionable by developers. It is silenced unless the developer specifically requests for it"]
#[doc = r" to be printed. See this tracking issue for more details:"]
#[doc = r" <https://github.com/rust-lang/rust/issues/136096>."]
pub static LINKER_INFO: &crate::Lint =
&crate::Lint {
name: "LINKER_INFO",
default_level: crate::Allow,
desc: "linker warnings known to be informational-only and not indicative of a problem",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4059/// The `linker_info` lint forwards warnings from the linker that are known to be informational-only.
4060 ///
4061 /// ### Example
4062 ///
4063 /// ```rust,ignore (needs CLI args, platform-specific)
4064 /// #[warn(linker_info)]
4065 /// fn main () {}
4066 /// ```
4067 ///
4068 /// On MacOS, using `-C link-arg=-lc` and the default linker, this will produce
4069 ///
4070 /// ```text
4071 /// warning: linker stderr: ld: ignoring duplicate libraries: '-lc'
4072 /// |
4073 /// note: the lint level is defined here
4074 /// --> ex.rs:1:9
4075 /// |
4076 /// 1 | #![warn(linker_info)]
4077 /// | ^^^^^^^^^^^^^^^
4078 /// ```
4079 ///
4080 /// ### Explanation
4081 ///
4082 /// Many linkers are very "chatty" and print lots of information that is not necessarily
4083 /// indicative of an issue. This output has been ignored for many years and is often not
4084 /// actionable by developers. It is silenced unless the developer specifically requests for it
4085 /// to be printed. See this tracking issue for more details:
4086 /// <https://github.com/rust-lang/rust/issues/136096>.
4087pub LINKER_INFO,
4088 Allow,
4089"linker warnings known to be informational-only and not indicative of a problem"
4090}40914092#[doc =
r" The `named_arguments_used_positionally` lint detects cases where named arguments are only"]
#[doc =
r" used positionally in format strings. This usage is valid but potentially very confusing."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(named_arguments_used_positionally)]"]
#[doc = r" fn main() {"]
#[doc = r" let _x = 5;"]
#[doc = r#" println!("{}", _x = 1); // Prints 1, will trigger lint"#]
#[doc = r""]
#[doc = r#" println!("{}", _x); // Prints 5, no lint emitted"#]
#[doc = r#" println!("{_x}", _x = _x); // Prints 5, no lint emitted"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Rust formatting strings can refer to named arguments by their position, but this usage is"]
#[doc =
r" potentially confusing. In particular, readers can incorrectly assume that the declaration"]
#[doc =
r" of named arguments is an assignment (which would produce the unit type)."]
#[doc = r" For backwards compatibility, this is not a hard error."]
pub static NAMED_ARGUMENTS_USED_POSITIONALLY: &crate::Lint =
&crate::Lint {
name: "NAMED_ARGUMENTS_USED_POSITIONALLY",
default_level: crate::Warn,
desc: "named arguments in format used positionally",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4093/// The `named_arguments_used_positionally` lint detects cases where named arguments are only
4094 /// used positionally in format strings. This usage is valid but potentially very confusing.
4095 ///
4096 /// ### Example
4097 ///
4098 /// ```rust,compile_fail
4099 /// #![deny(named_arguments_used_positionally)]
4100 /// fn main() {
4101 /// let _x = 5;
4102 /// println!("{}", _x = 1); // Prints 1, will trigger lint
4103 ///
4104 /// println!("{}", _x); // Prints 5, no lint emitted
4105 /// println!("{_x}", _x = _x); // Prints 5, no lint emitted
4106 /// }
4107 /// ```
4108 ///
4109 /// {{produces}}
4110 ///
4111 /// ### Explanation
4112 ///
4113 /// Rust formatting strings can refer to named arguments by their position, but this usage is
4114 /// potentially confusing. In particular, readers can incorrectly assume that the declaration
4115 /// of named arguments is an assignment (which would produce the unit type).
4116 /// For backwards compatibility, this is not a hard error.
4117pub NAMED_ARGUMENTS_USED_POSITIONALLY,
4118 Warn,
4119"named arguments in format used positionally"
4120}41214122#[doc =
r" The `never_type_fallback_flowing_into_unsafe` lint detects cases where never type fallback"]
#[doc = r" affects unsafe function calls."]
#[doc = r""]
#[doc = r" ### Never type fallback"]
#[doc = r""]
#[doc =
r" When the compiler sees a value of type [`!`] it implicitly inserts a coercion (if possible),"]
#[doc = r" to allow type check to infer any type:"]
#[doc = r""]
#[doc = r" ```ignore (illustrative-and-has-placeholders)"]
#[doc = r" // this"]
#[doc = r" let x: u8 = panic!();"]
#[doc = r""]
#[doc = r" // is (essentially) turned by the compiler into"]
#[doc = r" let x: u8 = absurd(panic!());"]
#[doc = r""]
#[doc = r" // where absurd is a function with the following signature"]
#[doc = r" // (it's sound, because `!` always marks unreachable code):"]
#[doc = r" fn absurd<T>(never: !) -> T { ... }"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" While it's convenient to be able to use non-diverging code in one of the branches (like"]
#[doc =
r" `if a { b } else { return }`) this could lead to compilation errors:"]
#[doc = r""]
#[doc = r" ```compile_fail"]
#[doc = r" // this"]
#[doc = r" { panic!() };"]
#[doc = r""]
#[doc = r" // gets turned into this"]
#[doc = r" { absurd(panic!()) }; // error: can't infer the type of `absurd`"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" To prevent such errors, compiler remembers where it inserted `absurd` calls, and if it"]
#[doc =
r" can't infer their type, it sets the type to fallback. `{ absurd::<Fallback>(panic!()) };`."]
#[doc = r#" This is what is known as "never type fallback"."#]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" fn main() {"]
#[doc = r" if true {"]
#[doc =
r" // return has type `!` which, is some cases, causes never type fallback"]
#[doc = r" return"]
#[doc = r" } else {"]
#[doc =
r" // `zeroed` is an unsafe function, which returns an unbounded type"]
#[doc = r" unsafe { std::mem::zeroed() }"]
#[doc = r" };"]
#[doc =
r" // depending on the fallback, `zeroed` may create `()` (which is completely sound),"]
#[doc = r" // or `!` (which is instant undefined behavior)"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Due to historic reasons never type fallback was `()`, meaning that `!` got spontaneously"]
#[doc =
r" coerced to `()`. There are plans to change that, but they may make the code such as above"]
#[doc =
r" unsound. Instead of depending on the fallback, you should specify the type explicitly:"]
#[doc = r" ```"]
#[doc = r" if true {"]
#[doc = r" return"]
#[doc = r" } else {"]
#[doc =
r" // type is explicitly specified, fallback can't hurt us no more"]
#[doc = r" unsafe { std::mem::zeroed::<()>() }"]
#[doc = r" };"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" See [Tracking Issue for making `!` fall back to `!`](https://github.com/rust-lang/rust/issues/123748)."]
#[doc = r""]
#[doc = r" [`!`]: https://doc.rust-lang.org/core/primitive.never.html"]
#[doc = r" [`()`]: https://doc.rust-lang.org/core/primitive.unit.html"]
pub static NEVER_TYPE_FALLBACK_FLOWING_INTO_UNSAFE: &crate::Lint =
&crate::Lint {
name: "NEVER_TYPE_FALLBACK_FLOWING_INTO_UNSAFE",
default_level: crate::Deny,
desc: "never type fallback affecting unsafe function calls",
is_externally_loaded: false,
report_in_external_macro: true,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionAndFutureReleaseSemanticsChange(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "never-type-fallback",
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
edition_lint_opts: Some((crate::Edition::Edition2024,
crate::Deny)),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4123/// The `never_type_fallback_flowing_into_unsafe` lint detects cases where never type fallback
4124 /// affects unsafe function calls.
4125 ///
4126 /// ### Never type fallback
4127 ///
4128 /// When the compiler sees a value of type [`!`] it implicitly inserts a coercion (if possible),
4129 /// to allow type check to infer any type:
4130 ///
4131 /// ```ignore (illustrative-and-has-placeholders)
4132 /// // this
4133 /// let x: u8 = panic!();
4134 ///
4135 /// // is (essentially) turned by the compiler into
4136 /// let x: u8 = absurd(panic!());
4137 ///
4138 /// // where absurd is a function with the following signature
4139 /// // (it's sound, because `!` always marks unreachable code):
4140 /// fn absurd<T>(never: !) -> T { ... }
4141 /// ```
4142 ///
4143 /// While it's convenient to be able to use non-diverging code in one of the branches (like
4144 /// `if a { b } else { return }`) this could lead to compilation errors:
4145 ///
4146 /// ```compile_fail
4147 /// // this
4148 /// { panic!() };
4149 ///
4150 /// // gets turned into this
4151 /// { absurd(panic!()) }; // error: can't infer the type of `absurd`
4152 /// ```
4153 ///
4154 /// To prevent such errors, compiler remembers where it inserted `absurd` calls, and if it
4155 /// can't infer their type, it sets the type to fallback. `{ absurd::<Fallback>(panic!()) };`.
4156 /// This is what is known as "never type fallback".
4157 ///
4158 /// ### Example
4159 ///
4160 /// ```rust,compile_fail
4161 /// fn main() {
4162 /// if true {
4163 /// // return has type `!` which, is some cases, causes never type fallback
4164 /// return
4165 /// } else {
4166 /// // `zeroed` is an unsafe function, which returns an unbounded type
4167 /// unsafe { std::mem::zeroed() }
4168 /// };
4169 /// // depending on the fallback, `zeroed` may create `()` (which is completely sound),
4170 /// // or `!` (which is instant undefined behavior)
4171 /// }
4172 /// ```
4173 ///
4174 /// {{produces}}
4175 ///
4176 /// ### Explanation
4177 ///
4178 /// Due to historic reasons never type fallback was `()`, meaning that `!` got spontaneously
4179 /// coerced to `()`. There are plans to change that, but they may make the code such as above
4180 /// unsound. Instead of depending on the fallback, you should specify the type explicitly:
4181 /// ```
4182 /// if true {
4183 /// return
4184 /// } else {
4185 /// // type is explicitly specified, fallback can't hurt us no more
4186 /// unsafe { std::mem::zeroed::<()>() }
4187 /// };
4188 /// ```
4189 ///
4190 /// See [Tracking Issue for making `!` fall back to `!`](https://github.com/rust-lang/rust/issues/123748).
4191 ///
4192 /// [`!`]: https://doc.rust-lang.org/core/primitive.never.html
4193 /// [`()`]: https://doc.rust-lang.org/core/primitive.unit.html
4194pub NEVER_TYPE_FALLBACK_FLOWING_INTO_UNSAFE,
4195 Deny,
4196"never type fallback affecting unsafe function calls",
4197 @future_incompatible = FutureIncompatibleInfo {
4198 reason: fcw!(EditionAndFutureReleaseSemanticsChange 2024 "never-type-fallback"),
4199 report_in_deps: true,
4200 };
4201 @edition Edition2024 => Deny;
4202 report_in_external_macro
4203}42044205#[doc =
r" The `dependency_on_unit_never_type_fallback` lint detects cases where code compiles with"]
#[doc =
r" [never type fallback] being [`()`], but will stop compiling with fallback being [`!`]."]
#[doc = r""]
#[doc =
r" [never type fallback]: https://doc.rust-lang.org/nightly/core/primitive.never.html#never-type-fallback"]
#[doc = r" [`!`]: https://doc.rust-lang.org/core/primitive.never.html"]
#[doc = r" [`()`]: https://doc.rust-lang.org/core/primitive.unit.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail,edition2021"]
#[doc = r" # #![deny(dependency_on_unit_never_type_fallback)]"]
#[doc = r" fn main() {"]
#[doc = r" if true {"]
#[doc =
r" // return has type `!` which, is some cases, causes never type fallback"]
#[doc = r" return"]
#[doc = r" } else {"]
#[doc =
r" // the type produced by this call is not specified explicitly,"]
#[doc = r" // so it will be inferred from the previous branch"]
#[doc = r" Default::default()"]
#[doc = r" };"]
#[doc =
r" // depending on the fallback, this may compile (because `()` implements `Default`),"]
#[doc = r" // or it may not (because `!` does not implement `Default`)"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Due to historic reasons never type fallback was `()`, meaning that `!` got spontaneously"]
#[doc =
r" coerced to `()`. There are plans to change that, but they may make the code such as above"]
#[doc =
r" not compile. Instead of depending on the fallback, you should specify the type explicitly:"]
#[doc = r" ```"]
#[doc = r" if true {"]
#[doc = r" return"]
#[doc = r" } else {"]
#[doc =
r" // type is explicitly specified, fallback can't hurt us no more"]
#[doc = r" <() as Default>::default()"]
#[doc = r" };"]
#[doc = r" ```"]
#[doc = r""]
#[doc =
r" See [Tracking Issue for making `!` fall back to `!`](https://github.com/rust-lang/rust/issues/123748)."]
pub static DEPENDENCY_ON_UNIT_NEVER_TYPE_FALLBACK: &crate::Lint =
&crate::Lint {
name: "DEPENDENCY_ON_UNIT_NEVER_TYPE_FALLBACK",
default_level: crate::Deny,
desc: "never type fallback affecting unsafe function calls",
is_externally_loaded: false,
report_in_external_macro: true,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionAndFutureReleaseError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "never-type-fallback",
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4206/// The `dependency_on_unit_never_type_fallback` lint detects cases where code compiles with
4207 /// [never type fallback] being [`()`], but will stop compiling with fallback being [`!`].
4208 ///
4209 /// [never type fallback]: https://doc.rust-lang.org/nightly/core/primitive.never.html#never-type-fallback
4210 /// [`!`]: https://doc.rust-lang.org/core/primitive.never.html
4211 /// [`()`]: https://doc.rust-lang.org/core/primitive.unit.html
4212 ///
4213 /// ### Example
4214 ///
4215 /// ```rust,compile_fail,edition2021
4216 /// # #![deny(dependency_on_unit_never_type_fallback)]
4217 /// fn main() {
4218 /// if true {
4219 /// // return has type `!` which, is some cases, causes never type fallback
4220 /// return
4221 /// } else {
4222 /// // the type produced by this call is not specified explicitly,
4223 /// // so it will be inferred from the previous branch
4224 /// Default::default()
4225 /// };
4226 /// // depending on the fallback, this may compile (because `()` implements `Default`),
4227 /// // or it may not (because `!` does not implement `Default`)
4228 /// }
4229 /// ```
4230 ///
4231 /// {{produces}}
4232 ///
4233 /// ### Explanation
4234 ///
4235 /// Due to historic reasons never type fallback was `()`, meaning that `!` got spontaneously
4236 /// coerced to `()`. There are plans to change that, but they may make the code such as above
4237 /// not compile. Instead of depending on the fallback, you should specify the type explicitly:
4238 /// ```
4239 /// if true {
4240 /// return
4241 /// } else {
4242 /// // type is explicitly specified, fallback can't hurt us no more
4243 /// <() as Default>::default()
4244 /// };
4245 /// ```
4246 ///
4247 /// See [Tracking Issue for making `!` fall back to `!`](https://github.com/rust-lang/rust/issues/123748).
4248pub DEPENDENCY_ON_UNIT_NEVER_TYPE_FALLBACK,
4249 Deny,
4250"never type fallback affecting unsafe function calls",
4251 @future_incompatible = FutureIncompatibleInfo {
4252 reason: fcw!(EditionAndFutureReleaseError 2024 "never-type-fallback"),
4253 report_in_deps: true,
4254 };
4255 report_in_external_macro
4256}42574258#[doc =
r" The `invalid_macro_export_arguments` lint detects cases where `#[macro_export]` is being used with invalid arguments."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(invalid_macro_export_arguments)]"]
#[doc = r""]
#[doc = r" #[macro_export(invalid_parameter)]"]
#[doc = r" macro_rules! myMacro {"]
#[doc = r" () => {"]
#[doc = r" // [...]"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" #[macro_export(too, many, items)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The only valid argument is `#[macro_export(local_inner_macros)]` or no argument (`#[macro_export]`)."]
#[doc =
r" You can't have multiple arguments in a `#[macro_export(..)]`, or mention arguments other than `local_inner_macros`."]
#[doc = r""]
pub static INVALID_MACRO_EXPORT_ARGUMENTS: &crate::Lint =
&crate::Lint {
name: "INVALID_MACRO_EXPORT_ARGUMENTS",
default_level: crate::Deny,
desc: "\"invalid_parameter\" isn't a valid argument for `#[macro_export]`",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 57571,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4259/// The `invalid_macro_export_arguments` lint detects cases where `#[macro_export]` is being used with invalid arguments.
4260 ///
4261 /// ### Example
4262 ///
4263 /// ```rust,compile_fail
4264 /// #![deny(invalid_macro_export_arguments)]
4265 ///
4266 /// #[macro_export(invalid_parameter)]
4267 /// macro_rules! myMacro {
4268 /// () => {
4269 /// // [...]
4270 /// }
4271 /// }
4272 ///
4273 /// #[macro_export(too, many, items)]
4274 /// ```
4275 ///
4276 /// {{produces}}
4277 ///
4278 /// ### Explanation
4279 ///
4280 /// The only valid argument is `#[macro_export(local_inner_macros)]` or no argument (`#[macro_export]`).
4281 /// You can't have multiple arguments in a `#[macro_export(..)]`, or mention arguments other than `local_inner_macros`.
4282 ///
4283pub INVALID_MACRO_EXPORT_ARGUMENTS,
4284 Deny,
4285"\"invalid_parameter\" isn't a valid argument for `#[macro_export]`",
4286 @future_incompatible = FutureIncompatibleInfo {
4287 reason: fcw!(FutureReleaseError #57571),
4288 report_in_deps: true,
4289 };
4290}42914292#[doc =
r" The `ambiguous_derive_helpers` lint detects cases where a derive macro's helper attribute"]
#[doc = r" is the same name as that of a built-in attribute."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (proc-macro)"]
#[doc = r#" #![crate_type = "proc-macro"]"#]
#[doc = r" #![deny(ambiguous_derive_helpers)]"]
#[doc = r""]
#[doc = r" use proc_macro::TokenStream;"]
#[doc = r""]
#[doc = r" #[proc_macro_derive(Trait, attributes(ignore))]"]
#[doc = r" pub fn example(input: TokenStream) -> TokenStream {"]
#[doc = r" TokenStream::new()"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" Produces:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" warning: there exists a built-in attribute with the same name"]
#[doc = r" --> file.rs:5:39"]
#[doc = r" |"]
#[doc = r" 5 | #[proc_macro_derive(Trait, attributes(ignore))]"]
#[doc = r" | ^^^^^^"]
#[doc = r" |"]
#[doc =
r" = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!"]
#[doc =
r" = note: for more information, see issue #151152 <https://github.com/rust-lang/rust/issues/151152>"]
#[doc =
r" = note: `#[deny(ambiguous_derive_helpers)]` (part of `#[deny(future_incompatible)]`) on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Attempting to use this helper attribute will throw an error:"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs-dependency)"]
#[doc = r" #[derive(Trait)]"]
#[doc = r" struct Example {"]
#[doc = r" #[ignore]"]
#[doc = r" fields: ()"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" Produces:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" error[E0659]: `ignore` is ambiguous"]
#[doc = r" --> src/lib.rs:5:7"]
#[doc = r" |"]
#[doc = r" 5 | #[ignore]"]
#[doc = r" | ^^^^^^ ambiguous name"]
#[doc = r" |"]
#[doc =
r" = note: ambiguous because of a name conflict with a builtin attribute"]
#[doc = r" = note: `ignore` could refer to a built-in attribute"]
#[doc =
r" note: `ignore` could also refer to the derive helper attribute defined here"]
#[doc = r" --> src/lib.rs:3:10"]
#[doc = r" |"]
#[doc = r" 3 | #[derive(Trait)]"]
#[doc = r" | ^^^^^"]
#[doc = r" ```"]
pub static AMBIGUOUS_DERIVE_HELPERS: &crate::Lint =
&crate::Lint {
name: "AMBIGUOUS_DERIVE_HELPERS",
default_level: crate::Warn,
desc: "detects derive helper attributes that are ambiguous with built-in attributes",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 151276,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4293/// The `ambiguous_derive_helpers` lint detects cases where a derive macro's helper attribute
4294 /// is the same name as that of a built-in attribute.
4295 ///
4296 /// ### Example
4297 ///
4298 /// ```rust,ignore (proc-macro)
4299 /// #![crate_type = "proc-macro"]
4300 /// #![deny(ambiguous_derive_helpers)]
4301 ///
4302 /// use proc_macro::TokenStream;
4303 ///
4304 /// #[proc_macro_derive(Trait, attributes(ignore))]
4305 /// pub fn example(input: TokenStream) -> TokenStream {
4306 /// TokenStream::new()
4307 /// }
4308 /// ```
4309 ///
4310 /// Produces:
4311 ///
4312 /// ```text
4313 /// warning: there exists a built-in attribute with the same name
4314 /// --> file.rs:5:39
4315 /// |
4316 /// 5 | #[proc_macro_derive(Trait, attributes(ignore))]
4317 /// | ^^^^^^
4318 /// |
4319 /// = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
4320 /// = note: for more information, see issue #151152 <https://github.com/rust-lang/rust/issues/151152>
4321 /// = note: `#[deny(ambiguous_derive_helpers)]` (part of `#[deny(future_incompatible)]`) on by default
4322 /// ```
4323 ///
4324 /// ### Explanation
4325 ///
4326 /// Attempting to use this helper attribute will throw an error:
4327 ///
4328 /// ```rust,ignore (needs-dependency)
4329 /// #[derive(Trait)]
4330 /// struct Example {
4331 /// #[ignore]
4332 /// fields: ()
4333 /// }
4334 /// ```
4335 ///
4336 /// Produces:
4337 ///
4338 /// ```text
4339 /// error[E0659]: `ignore` is ambiguous
4340 /// --> src/lib.rs:5:7
4341 /// |
4342 /// 5 | #[ignore]
4343 /// | ^^^^^^ ambiguous name
4344 /// |
4345 /// = note: ambiguous because of a name conflict with a builtin attribute
4346 /// = note: `ignore` could refer to a built-in attribute
4347 /// note: `ignore` could also refer to the derive helper attribute defined here
4348 /// --> src/lib.rs:3:10
4349 /// |
4350 /// 3 | #[derive(Trait)]
4351 /// | ^^^^^
4352 /// ```
4353pub AMBIGUOUS_DERIVE_HELPERS,
4354 Warn,
4355"detects derive helper attributes that are ambiguous with built-in attributes",
4356 @future_incompatible = FutureIncompatibleInfo {
4357 reason: fcw!(FutureReleaseError #151276),
4358 };
4359}43604361#[doc =
r" The `private_interfaces` lint detects types in a primary interface of an item,"]
#[doc =
r" that are more private than the item itself. Primary interface of an item is all"]
#[doc =
r" its interface except for bounds on generic parameters and where clauses."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![allow(unused)]"]
#[doc = r" #![deny(private_interfaces)]"]
#[doc = r" struct SemiPriv;"]
#[doc = r""]
#[doc = r" mod m1 {"]
#[doc = r" struct Priv;"]
#[doc = r" impl crate::SemiPriv {"]
#[doc = r" pub fn f(_: Priv) {}"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" # fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Having something private in primary interface guarantees that"]
#[doc = r" the item will be unusable from outer modules due to type privacy."]
pub static PRIVATE_INTERFACES: &crate::Lint =
&crate::Lint {
name: "PRIVATE_INTERFACES",
default_level: crate::Warn,
desc: "private type in primary interface of an item",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4362/// The `private_interfaces` lint detects types in a primary interface of an item,
4363 /// that are more private than the item itself. Primary interface of an item is all
4364 /// its interface except for bounds on generic parameters and where clauses.
4365 ///
4366 /// ### Example
4367 ///
4368 /// ```rust,compile_fail
4369 /// # #![allow(unused)]
4370 /// #![deny(private_interfaces)]
4371 /// struct SemiPriv;
4372 ///
4373 /// mod m1 {
4374 /// struct Priv;
4375 /// impl crate::SemiPriv {
4376 /// pub fn f(_: Priv) {}
4377 /// }
4378 /// }
4379 ///
4380 /// # fn main() {}
4381 /// ```
4382 ///
4383 /// {{produces}}
4384 ///
4385 /// ### Explanation
4386 ///
4387 /// Having something private in primary interface guarantees that
4388 /// the item will be unusable from outer modules due to type privacy.
4389pub PRIVATE_INTERFACES,
4390 Warn,
4391"private type in primary interface of an item",
4392}43934394#[doc =
r" The `private_bounds` lint detects types in a secondary interface of an item,"]
#[doc =
r" that are more private than the item itself. Secondary interface of an item consists of"]
#[doc =
r" bounds on generic parameters and where clauses, including supertraits for trait items."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![allow(unused)]"]
#[doc = r" #![deny(private_bounds)]"]
#[doc = r""]
#[doc = r" struct PrivTy;"]
#[doc = r" pub struct S"]
#[doc = r" where PrivTy:"]
#[doc = r" {}"]
#[doc = r" # fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Having private types or traits in item bounds makes it less clear what interface"]
#[doc = r" the item actually provides."]
pub static PRIVATE_BOUNDS: &crate::Lint =
&crate::Lint {
name: "PRIVATE_BOUNDS",
default_level: crate::Warn,
desc: "private type in secondary interface of an item",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4395/// The `private_bounds` lint detects types in a secondary interface of an item,
4396 /// that are more private than the item itself. Secondary interface of an item consists of
4397 /// bounds on generic parameters and where clauses, including supertraits for trait items.
4398 ///
4399 /// ### Example
4400 ///
4401 /// ```rust,compile_fail
4402 /// # #![allow(unused)]
4403 /// #![deny(private_bounds)]
4404 ///
4405 /// struct PrivTy;
4406 /// pub struct S
4407 /// where PrivTy:
4408 /// {}
4409 /// # fn main() {}
4410 /// ```
4411 ///
4412 /// {{produces}}
4413 ///
4414 /// ### Explanation
4415 ///
4416 /// Having private types or traits in item bounds makes it less clear what interface
4417 /// the item actually provides.
4418pub PRIVATE_BOUNDS,
4419 Warn,
4420"private type in secondary interface of an item",
4421}44224423#[doc =
r" The `unnameable_types` lint detects types for which you can get objects of that type,"]
#[doc = r" but cannot name the type itself."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" # #![allow(unused)]"]
#[doc = r" #![deny(unnameable_types)]"]
#[doc = r" mod m {"]
#[doc = r" pub struct S;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" pub fn get_unnameable() -> m::S { m::S }"]
#[doc = r" # fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is often expected that if you can obtain an object of type `T`, then"]
#[doc =
r" you can name the type `T` as well; this lint attempts to enforce this rule."]
#[doc =
r" The recommended action is to either reexport the type properly to make it nameable,"]
#[doc =
r" or document that users are not supposed to be able to name it for one reason or another."]
#[doc = r""]
#[doc =
r" Besides types, this lint applies to traits because traits can also leak through signatures,"]
#[doc =
r" and you may obtain objects of their `dyn Trait` or `impl Trait` types."]
pub static UNNAMEABLE_TYPES: &crate::Lint =
&crate::Lint {
name: "UNNAMEABLE_TYPES",
default_level: crate::Allow,
desc: "effective visibility of a type is larger than the area in which it can be named",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4424/// The `unnameable_types` lint detects types for which you can get objects of that type,
4425 /// but cannot name the type itself.
4426 ///
4427 /// ### Example
4428 ///
4429 /// ```rust,compile_fail
4430 /// # #![allow(unused)]
4431 /// #![deny(unnameable_types)]
4432 /// mod m {
4433 /// pub struct S;
4434 /// }
4435 ///
4436 /// pub fn get_unnameable() -> m::S { m::S }
4437 /// # fn main() {}
4438 /// ```
4439 ///
4440 /// {{produces}}
4441 ///
4442 /// ### Explanation
4443 ///
4444 /// It is often expected that if you can obtain an object of type `T`, then
4445 /// you can name the type `T` as well; this lint attempts to enforce this rule.
4446 /// The recommended action is to either reexport the type properly to make it nameable,
4447 /// or document that users are not supposed to be able to name it for one reason or another.
4448 ///
4449 /// Besides types, this lint applies to traits because traits can also leak through signatures,
4450 /// and you may obtain objects of their `dyn Trait` or `impl Trait` types.
4451pub UNNAMEABLE_TYPES,
4452 Allow,
4453"effective visibility of a type is larger than the area in which it can be named",
4454}44554456#[doc =
r" The `malformed_diagnostic_attributes` lint detects malformed diagnostic attributes."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r#" #[diagnostic::do_not_recommend(message = "message")]"#]
#[doc = r" trait Trait {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is usually a mistake to use options or syntax that is not supported. Check the spelling,"]
#[doc =
r" and check the diagnostic attribute listing for the correct name and syntax. Also consider if"]
#[doc =
r" you are using an old version of the compiler; perhaps the option or syntax is only available"]
#[doc =
r" in a newer version. See the [reference] for a list of diagnostic attributes and the syntax"]
#[doc = r" of each."]
#[doc = r""]
#[doc =
r" [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace"]
pub static MALFORMED_DIAGNOSTIC_ATTRIBUTES: &crate::Lint =
&crate::Lint {
name: "MALFORMED_DIAGNOSTIC_ATTRIBUTES",
default_level: crate::Warn,
desc: "detects malformed diagnostic attributes",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4457/// The `malformed_diagnostic_attributes` lint detects malformed diagnostic attributes.
4458 ///
4459 /// ### Example
4460 ///
4461 /// ```rust
4462 /// #[diagnostic::do_not_recommend(message = "message")]
4463 /// trait Trait {}
4464 /// ```
4465 ///
4466 /// {{produces}}
4467 ///
4468 /// ### Explanation
4469 ///
4470 /// It is usually a mistake to use options or syntax that is not supported. Check the spelling,
4471 /// and check the diagnostic attribute listing for the correct name and syntax. Also consider if
4472 /// you are using an old version of the compiler; perhaps the option or syntax is only available
4473 /// in a newer version. See the [reference] for a list of diagnostic attributes and the syntax
4474 /// of each.
4475 ///
4476 /// [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace
4477pub MALFORMED_DIAGNOSTIC_ATTRIBUTES,
4478 Warn,
4479"detects malformed diagnostic attributes",
4480}44814482#[doc =
r" The `misplaced_diagnostic_attributes` lint detects wrongly placed diagnostic attributes."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #[diagnostic::do_not_recommend]"]
#[doc = r" struct NotUserFacing;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is usually a mistake to specify a diagnostic attribute on an item it is not meant for."]
#[doc =
r" For example, `#[diagnostic::do_not_recommend]` can only be placed on trait implementations,"]
#[doc =
r" and does nothing if placed elsewhere. See the [reference] for a list of diagnostic"]
#[doc = r" attributes and their correct positions."]
#[doc = r""]
#[doc =
r" [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace"]
pub static MISPLACED_DIAGNOSTIC_ATTRIBUTES: &crate::Lint =
&crate::Lint {
name: "MISPLACED_DIAGNOSTIC_ATTRIBUTES",
default_level: crate::Warn,
desc: "detects diagnostic attributes that are placed on the wrong item",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4483/// The `misplaced_diagnostic_attributes` lint detects wrongly placed diagnostic attributes.
4484 ///
4485 /// ### Example
4486 ///
4487 /// ```rust
4488 /// #[diagnostic::do_not_recommend]
4489 /// struct NotUserFacing;
4490 /// ```
4491 ///
4492 /// {{produces}}
4493 ///
4494 /// ### Explanation
4495 ///
4496 /// It is usually a mistake to specify a diagnostic attribute on an item it is not meant for.
4497 /// For example, `#[diagnostic::do_not_recommend]` can only be placed on trait implementations,
4498 /// and does nothing if placed elsewhere. See the [reference] for a list of diagnostic
4499 /// attributes and their correct positions.
4500 ///
4501 /// [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace
4502pub MISPLACED_DIAGNOSTIC_ATTRIBUTES,
4503 Warn,
4504"detects diagnostic attributes that are placed on the wrong item",
4505}45064507#[doc =
r" The `unknown_diagnostic_attributes` lint detects unknown diagnostic attributes."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #[diagnostic::does_not_exist]"]
#[doc = r" struct Thing;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" It is usually a mistake to specify a diagnostic attribute that does not exist. Check the"]
#[doc =
r" spelling, and check the diagnostic attribute listing for the correct name. Also consider if"]
#[doc =
r" you are using an old version of the compiler and the attribute is only available in a newer"]
#[doc =
r" version. See the [reference] for the list of diagnostic attributes."]
#[doc = r""]
#[doc =
r" [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace"]
pub static UNKNOWN_DIAGNOSTIC_ATTRIBUTES: &crate::Lint =
&crate::Lint {
name: "UNKNOWN_DIAGNOSTIC_ATTRIBUTES",
default_level: crate::Warn,
desc: "detects unknown diagnostic attributes",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4508/// The `unknown_diagnostic_attributes` lint detects unknown diagnostic attributes.
4509 ///
4510 /// ### Example
4511 ///
4512 /// ```rust
4513 /// #[diagnostic::does_not_exist]
4514 /// struct Thing;
4515 /// ```
4516 ///
4517 /// {{produces}}
4518 ///
4519 /// ### Explanation
4520 ///
4521 /// It is usually a mistake to specify a diagnostic attribute that does not exist. Check the
4522 /// spelling, and check the diagnostic attribute listing for the correct name. Also consider if
4523 /// you are using an old version of the compiler and the attribute is only available in a newer
4524 /// version. See the [reference] for the list of diagnostic attributes.
4525 ///
4526 /// [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace
4527pub UNKNOWN_DIAGNOSTIC_ATTRIBUTES,
4528 Warn,
4529"detects unknown diagnostic attributes",
4530}45314532#[doc =
r" The `malformed_diagnostic_format_literals` lint detects malformed diagnostic format"]
#[doc = r" literals."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc =
r#" #[diagnostic::on_unimplemented(message = "{Self}} does not implement `Trait`")]"#]
#[doc = r" trait Trait {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The `#[diagnostic::on_unimplemented]` attribute accepts string literal values that are"]
#[doc =
r" similar to `format!`'s string literal. See the [reference] for details on what is permitted"]
#[doc = r" in this string literal."]
#[doc = r""]
#[doc =
r" [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace"]
pub static MALFORMED_DIAGNOSTIC_FORMAT_LITERALS: &crate::Lint =
&crate::Lint {
name: "MALFORMED_DIAGNOSTIC_FORMAT_LITERALS",
default_level: crate::Warn,
desc: "detects diagnostic attribute with malformed diagnostic format literals",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4533/// The `malformed_diagnostic_format_literals` lint detects malformed diagnostic format
4534 /// literals.
4535 ///
4536 /// ### Example
4537 ///
4538 /// ```rust
4539 /// #[diagnostic::on_unimplemented(message = "{Self}} does not implement `Trait`")]
4540 /// trait Trait {}
4541 /// ```
4542 ///
4543 /// {{produces}}
4544 ///
4545 /// ### Explanation
4546 ///
4547 /// The `#[diagnostic::on_unimplemented]` attribute accepts string literal values that are
4548 /// similar to `format!`'s string literal. See the [reference] for details on what is permitted
4549 /// in this string literal.
4550 ///
4551 /// [reference]: https://doc.rust-lang.org/nightly/reference/attributes/diagnostics.html#the-diagnostic-tool-attribute-namespace
4552pub MALFORMED_DIAGNOSTIC_FORMAT_LITERALS,
4553 Warn,
4554"detects diagnostic attribute with malformed diagnostic format literals",
4555}45564557#[doc =
r" The `malformed_diagnostic_filters` lint detects malformed filters in diagnostic"]
#[doc = r" attributes."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = "```rust"]
#[doc = r" #![feature(rustc_attrs)]"]
#[doc = r" #![allow(internal_features)]"]
#[doc = r""]
#[doc = r#" #[rustc_on_unimplemented(on(invalid, message = "unused"))]"#]
#[doc = r" trait Trait {}"]
#[doc = "```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" A `rustc_on_unimplemented` filter must use a supported flag, a name-value predicate,"]
#[doc =
r" or the `all`, `any`, and `not` predicate operators. Invalid filters are ignored."]
pub static MALFORMED_DIAGNOSTIC_FILTERS: &crate::Lint =
&crate::Lint {
name: "MALFORMED_DIAGNOSTIC_FILTERS",
default_level: crate::Warn,
desc: "detects malformed filters in diagnostic attributes",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::rustc_attrs),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4558/// The `malformed_diagnostic_filters` lint detects malformed filters in diagnostic
4559 /// attributes.
4560 ///
4561 /// ### Example
4562 ///
4563// FIXME(bootstrap): Use a regular Rust doc code block after stage 0 emits
4564 // `malformed_diagnostic_filters` instead of E0232 for this example.
4565#[cfg_attr(bootstrap, doc = "```rust,ignore (stage 0 emits E0232)")]
4566 #[cfg_attr(not(bootstrap), doc = "```rust")]
4567/// #![feature(rustc_attrs)]
4568 /// #![allow(internal_features)]
4569 ///
4570 /// #[rustc_on_unimplemented(on(invalid, message = "unused"))]
4571 /// trait Trait {}
4572#[doc = "```"]
4573///
4574 /// {{produces}}
4575 ///
4576 /// ### Explanation
4577 ///
4578 /// A `rustc_on_unimplemented` filter must use a supported flag, a name-value predicate,
4579 /// or the `all`, `any`, and `not` predicate operators. Invalid filters are ignored.
4580pub MALFORMED_DIAGNOSTIC_FILTERS,
4581 Warn,
4582"detects malformed filters in diagnostic attributes",
4583 @feature_gate = rustc_attrs;
4584}45854586#[doc =
r" The `ambiguous_glob_imports` lint detects glob imports that should report ambiguity"]
#[doc = r" errors, but previously didn't do that due to rustc bugs."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs extern crate)"]
#[doc = r" // library crate `my_library`"]
#[doc = r" mod mod1 { pub const C: u32 = 1; }"]
#[doc = r" mod mod2 { pub const C: u32 = 2; }"]
#[doc = r" pub use mod1::*;"]
#[doc = r" pub use mod2::*;"]
#[doc = r""]
#[doc = r" // another crate using `my_library`"]
#[doc = r" let c = my_library::C; // `C` is ambiguous"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Previous versions of Rust compile it successfully because"]
#[doc =
r" ambiguous glob imports weren't preserved correctly over crate boundaries."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a"]
#[doc = r" hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static AMBIGUOUS_GLOB_IMPORTS: &crate::Lint =
&crate::Lint {
name: "AMBIGUOUS_GLOB_IMPORTS",
default_level: crate::Deny,
desc: "detects certain glob imports that require reporting an ambiguity error",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 114095,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4587/// The `ambiguous_glob_imports` lint detects glob imports that should report ambiguity
4588 /// errors, but previously didn't do that due to rustc bugs.
4589 ///
4590 /// ### Example
4591 ///
4592 /// ```rust,ignore (needs extern crate)
4593 /// // library crate `my_library`
4594 /// mod mod1 { pub const C: u32 = 1; }
4595 /// mod mod2 { pub const C: u32 = 2; }
4596 /// pub use mod1::*;
4597 /// pub use mod2::*;
4598 ///
4599 /// // another crate using `my_library`
4600 /// let c = my_library::C; // `C` is ambiguous
4601 /// ```
4602 ///
4603 /// ### Explanation
4604 ///
4605 /// Previous versions of Rust compile it successfully because
4606 /// ambiguous glob imports weren't preserved correctly over crate boundaries.
4607 ///
4608 /// This is a [future-incompatible] lint to transition this to a
4609 /// hard error in the future.
4610 ///
4611 /// [future-incompatible]: ../index.md#future-incompatible-lints
4612pub AMBIGUOUS_GLOB_IMPORTS,
4613 Deny,
4614"detects certain glob imports that require reporting an ambiguity error",
4615 @future_incompatible = FutureIncompatibleInfo {
4616 reason: fcw!(FutureReleaseError #114095),
4617 report_in_deps: true,
4618 };
4619}46204621#[doc =
r" The `ambiguous_glob_imported_traits` lint reports uses of traits that are"]
#[doc =
r" imported ambiguously via glob imports. Previously, this was not enforced"]
#[doc = r" due to a bug in rustc."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(ambiguous_glob_imported_traits)]"]
#[doc = r" mod m1 {"]
#[doc = r" pub trait Trait {"]
#[doc = r" fn method1(&self) {}"]
#[doc = r" }"]
#[doc = r" impl Trait for u8 {}"]
#[doc = r" }"]
#[doc = r" mod m2 {"]
#[doc = r" pub trait Trait {"]
#[doc = r" fn method2(&self) {}"]
#[doc = r" }"]
#[doc = r" impl Trait for u8 {}"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" use m1::*;"]
#[doc = r" use m2::*;"]
#[doc = r" 0u8.method1();"]
#[doc = r" 0u8.method2();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" When multiple traits with the same name are brought into scope through glob imports,"]
#[doc =
r#" one trait becomes the "primary" one while the others are shadowed. Methods from the"#]
#[doc =
r#" shadowed traits (e.g. `method2`) become inaccessible, while methods from the "primary""#]
#[doc =
r" trait (e.g. `method1`) still resolve. Ideally, none of the ambiguous traits would be in scope,"]
#[doc =
r" but we have to allow this for now because of backwards compatibility."]
#[doc =
r#" This lint reports uses of these "primary" traits that are ambiguous."#]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a"]
#[doc = r" hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static AMBIGUOUS_GLOB_IMPORTED_TRAITS: &crate::Lint =
&crate::Lint {
name: "AMBIGUOUS_GLOB_IMPORTED_TRAITS",
default_level: crate::Warn,
desc: "detects uses of ambiguously glob imported traits",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 152822,
}),
report_in_deps: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4622/// The `ambiguous_glob_imported_traits` lint reports uses of traits that are
4623 /// imported ambiguously via glob imports. Previously, this was not enforced
4624 /// due to a bug in rustc.
4625 ///
4626 /// ### Example
4627 ///
4628 /// ```rust,compile_fail
4629 /// #![deny(ambiguous_glob_imported_traits)]
4630 /// mod m1 {
4631 /// pub trait Trait {
4632 /// fn method1(&self) {}
4633 /// }
4634 /// impl Trait for u8 {}
4635 /// }
4636 /// mod m2 {
4637 /// pub trait Trait {
4638 /// fn method2(&self) {}
4639 /// }
4640 /// impl Trait for u8 {}
4641 /// }
4642 ///
4643 /// fn main() {
4644 /// use m1::*;
4645 /// use m2::*;
4646 /// 0u8.method1();
4647 /// 0u8.method2();
4648 /// }
4649 /// ```
4650 ///
4651 /// {{produces}}
4652 ///
4653 /// ### Explanation
4654 ///
4655 /// When multiple traits with the same name are brought into scope through glob imports,
4656 /// one trait becomes the "primary" one while the others are shadowed. Methods from the
4657 /// shadowed traits (e.g. `method2`) become inaccessible, while methods from the "primary"
4658 /// trait (e.g. `method1`) still resolve. Ideally, none of the ambiguous traits would be in scope,
4659 /// but we have to allow this for now because of backwards compatibility.
4660 /// This lint reports uses of these "primary" traits that are ambiguous.
4661 ///
4662 /// This is a [future-incompatible] lint to transition this to a
4663 /// hard error in the future.
4664 ///
4665 /// [future-incompatible]: ../index.md#future-incompatible-lints
4666pub AMBIGUOUS_GLOB_IMPORTED_TRAITS,
4667 Warn,
4668"detects uses of ambiguously glob imported traits",
4669 @future_incompatible = FutureIncompatibleInfo {
4670 reason: fcw!(FutureReleaseError #152822),
4671 report_in_deps: false,
4672 };
4673}46744675#[doc =
r" The `ambiguous_panic_imports` lint detects ambiguous core and std panic imports, but"]
#[doc =
r" previously didn't do that due to `#[macro_use]` prelude macro import."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(ambiguous_panic_imports)]"]
#[doc = r" #![no_std]"]
#[doc = r""]
#[doc = r" extern crate std;"]
#[doc = r" use std::prelude::v1::*;"]
#[doc = r""]
#[doc = r" fn xx() {"]
#[doc = r" panic!(); // resolves to core::panic"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Future versions of Rust will no longer accept the ambiguous resolution."]
#[doc = r""]
#[doc =
r" This is a [future-incompatible] lint to transition this to a hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static AMBIGUOUS_PANIC_IMPORTS: &crate::Lint =
&crate::Lint {
name: "AMBIGUOUS_PANIC_IMPORTS",
default_level: crate::Warn,
desc: "detects ambiguous core and std panic imports",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 147319,
}),
report_in_deps: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4676/// The `ambiguous_panic_imports` lint detects ambiguous core and std panic imports, but
4677 /// previously didn't do that due to `#[macro_use]` prelude macro import.
4678 ///
4679 /// ### Example
4680 ///
4681 /// ```rust,compile_fail
4682 /// #![deny(ambiguous_panic_imports)]
4683 /// #![no_std]
4684 ///
4685 /// extern crate std;
4686 /// use std::prelude::v1::*;
4687 ///
4688 /// fn xx() {
4689 /// panic!(); // resolves to core::panic
4690 /// }
4691 /// ```
4692 ///
4693 /// {{produces}}
4694 ///
4695 /// ### Explanation
4696 ///
4697 /// Future versions of Rust will no longer accept the ambiguous resolution.
4698 ///
4699 /// This is a [future-incompatible] lint to transition this to a hard error in the future.
4700 ///
4701 /// [future-incompatible]: ../index.md#future-incompatible-lints
4702pub AMBIGUOUS_PANIC_IMPORTS,
4703 Warn,
4704"detects ambiguous core and std panic imports",
4705 @future_incompatible = FutureIncompatibleInfo {
4706 reason: fcw!(FutureReleaseError #147319),
4707 report_in_deps: false,
4708 };
4709}47104711#[doc =
r" The `ambiguous_import_visibilities` lint detects imports that should report ambiguity"]
#[doc = r" errors, but previously didn't do that due to rustc bugs."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(unknown_lints)]"]
#[doc = r" #![deny(ambiguous_import_visibilities)]"]
#[doc = r" mod reexport {"]
#[doc = r" mod m {"]
#[doc = r" pub struct S {}"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" macro_rules! mac {"]
#[doc = r" () => { use m::S; }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" pub use m::*;"]
#[doc = r" mac!();"]
#[doc = r""]
#[doc = r" pub use S as Z; // ambiguous visibility"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" reexport::Z {};"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Previous versions of Rust compile it successfully because it"]
#[doc =
r" fetched the glob import's visibility for `pub use S as Z` import, and ignored the private"]
#[doc = r" `use m::S` import that appeared later."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a"]
#[doc = r" hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static AMBIGUOUS_IMPORT_VISIBILITIES: &crate::Lint =
&crate::Lint {
name: "AMBIGUOUS_IMPORT_VISIBILITIES",
default_level: crate::Warn,
desc: "detects certain glob imports that require reporting an ambiguity error",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 149145,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4712/// The `ambiguous_import_visibilities` lint detects imports that should report ambiguity
4713 /// errors, but previously didn't do that due to rustc bugs.
4714 ///
4715 /// ### Example
4716 ///
4717 /// ```rust,compile_fail
4718 /// #![deny(unknown_lints)]
4719 /// #![deny(ambiguous_import_visibilities)]
4720 /// mod reexport {
4721 /// mod m {
4722 /// pub struct S {}
4723 /// }
4724 ///
4725 /// macro_rules! mac {
4726 /// () => { use m::S; }
4727 /// }
4728 ///
4729 /// pub use m::*;
4730 /// mac!();
4731 ///
4732 /// pub use S as Z; // ambiguous visibility
4733 /// }
4734 ///
4735 /// fn main() {
4736 /// reexport::Z {};
4737 /// }
4738 /// ```
4739 ///
4740 /// {{produces}}
4741 ///
4742 /// ### Explanation
4743 ///
4744 /// Previous versions of Rust compile it successfully because it
4745 /// fetched the glob import's visibility for `pub use S as Z` import, and ignored the private
4746 /// `use m::S` import that appeared later.
4747 ///
4748 /// This is a [future-incompatible] lint to transition this to a
4749 /// hard error in the future.
4750 ///
4751 /// [future-incompatible]: ../index.md#future-incompatible-lints
4752pub AMBIGUOUS_IMPORT_VISIBILITIES,
4753 Warn,
4754"detects certain glob imports that require reporting an ambiguity error",
4755 @future_incompatible = FutureIncompatibleInfo {
4756 reason: fcw!(FutureReleaseError #149145),
4757 };
4758}47594760#[doc =
r" The `refining_impl_trait_reachable` lint detects `impl Trait` return"]
#[doc =
r" types in method signatures that are refined by a publically reachable"]
#[doc =
r" trait implementation, meaning the implementation adds information about"]
#[doc = r" the return type that is not present in the trait."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(refining_impl_trait)]"]
#[doc = r""]
#[doc = r" use std::fmt::Display;"]
#[doc = r""]
#[doc = r" pub trait AsDisplay {"]
#[doc = r" fn as_display(&self) -> impl Display;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl<'s> AsDisplay for &'s str {"]
#[doc = r" fn as_display(&self) -> Self {"]
#[doc = r" *self"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" // users can observe that the return type of"]
#[doc = r" // `<&str as AsDisplay>::as_display()` is `&str`."]
#[doc = r#" let _x: &str = "".as_display();"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Callers of methods for types where the implementation is known are"]
#[doc =
r" able to observe the types written in the impl signature. This may be"]
#[doc =
r" intended behavior, but may also lead to implementation details being"]
#[doc =
r" revealed unintentionally. In particular, it may pose a semver hazard"]
#[doc =
r" for authors of libraries who do not wish to make stronger guarantees"]
#[doc = r" about the types than what is written in the trait signature."]
#[doc = r""]
#[doc = r" `refining_impl_trait` is a lint group composed of two lints:"]
#[doc = r""]
#[doc =
r" * `refining_impl_trait_reachable`, for refinements that are publically"]
#[doc = r" reachable outside a crate, and"]
#[doc =
r" * `refining_impl_trait_internal`, for refinements that are only visible"]
#[doc = r" within a crate."]
#[doc = r""]
#[doc = r" We are seeking feedback on each of these lints; see issue"]
#[doc =
r" [#121718](https://github.com/rust-lang/rust/issues/121718) for more"]
#[doc = r" information."]
pub static REFINING_IMPL_TRAIT_REACHABLE: &crate::Lint =
&crate::Lint {
name: "REFINING_IMPL_TRAIT_REACHABLE",
default_level: crate::Warn,
desc: "impl trait in impl method signature does not match trait method signature",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4761/// The `refining_impl_trait_reachable` lint detects `impl Trait` return
4762 /// types in method signatures that are refined by a publically reachable
4763 /// trait implementation, meaning the implementation adds information about
4764 /// the return type that is not present in the trait.
4765 ///
4766 /// ### Example
4767 ///
4768 /// ```rust,compile_fail
4769 /// #![deny(refining_impl_trait)]
4770 ///
4771 /// use std::fmt::Display;
4772 ///
4773 /// pub trait AsDisplay {
4774 /// fn as_display(&self) -> impl Display;
4775 /// }
4776 ///
4777 /// impl<'s> AsDisplay for &'s str {
4778 /// fn as_display(&self) -> Self {
4779 /// *self
4780 /// }
4781 /// }
4782 ///
4783 /// fn main() {
4784 /// // users can observe that the return type of
4785 /// // `<&str as AsDisplay>::as_display()` is `&str`.
4786 /// let _x: &str = "".as_display();
4787 /// }
4788 /// ```
4789 ///
4790 /// {{produces}}
4791 ///
4792 /// ### Explanation
4793 ///
4794 /// Callers of methods for types where the implementation is known are
4795 /// able to observe the types written in the impl signature. This may be
4796 /// intended behavior, but may also lead to implementation details being
4797 /// revealed unintentionally. In particular, it may pose a semver hazard
4798 /// for authors of libraries who do not wish to make stronger guarantees
4799 /// about the types than what is written in the trait signature.
4800 ///
4801 /// `refining_impl_trait` is a lint group composed of two lints:
4802 ///
4803 /// * `refining_impl_trait_reachable`, for refinements that are publically
4804 /// reachable outside a crate, and
4805 /// * `refining_impl_trait_internal`, for refinements that are only visible
4806 /// within a crate.
4807 ///
4808 /// We are seeking feedback on each of these lints; see issue
4809 /// [#121718](https://github.com/rust-lang/rust/issues/121718) for more
4810 /// information.
4811pub REFINING_IMPL_TRAIT_REACHABLE,
4812 Warn,
4813"impl trait in impl method signature does not match trait method signature",
4814}48154816#[doc =
r" The `refining_impl_trait_internal` lint detects `impl Trait` return"]
#[doc =
r" types in method signatures that are refined by a trait implementation,"]
#[doc =
r" meaning the implementation adds information about the return type that"]
#[doc = r" is not present in the trait."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(refining_impl_trait)]"]
#[doc = r""]
#[doc = r" use std::fmt::Display;"]
#[doc = r""]
#[doc = r" trait AsDisplay {"]
#[doc = r" fn as_display(&self) -> impl Display;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl<'s> AsDisplay for &'s str {"]
#[doc = r" fn as_display(&self) -> Self {"]
#[doc = r" *self"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" // users can observe that the return type of"]
#[doc = r" // `<&str as AsDisplay>::as_display()` is `&str`."]
#[doc = r#" let _x: &str = "".as_display();"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Callers of methods for types where the implementation is known are"]
#[doc =
r" able to observe the types written in the impl signature. This may be"]
#[doc =
r" intended behavior, but may also lead to implementation details being"]
#[doc =
r" revealed unintentionally. In particular, it may pose a semver hazard"]
#[doc =
r" for authors of libraries who do not wish to make stronger guarantees"]
#[doc = r" about the types than what is written in the trait signature."]
#[doc = r""]
#[doc = r" `refining_impl_trait` is a lint group composed of two lints:"]
#[doc = r""]
#[doc =
r" * `refining_impl_trait_reachable`, for refinements that are publically"]
#[doc = r" reachable outside a crate, and"]
#[doc =
r" * `refining_impl_trait_internal`, for refinements that are only visible"]
#[doc = r" within a crate."]
#[doc = r""]
#[doc = r" We are seeking feedback on each of these lints; see issue"]
#[doc =
r" [#121718](https://github.com/rust-lang/rust/issues/121718) for more"]
#[doc = r" information."]
pub static REFINING_IMPL_TRAIT_INTERNAL: &crate::Lint =
&crate::Lint {
name: "REFINING_IMPL_TRAIT_INTERNAL",
default_level: crate::Warn,
desc: "impl trait in impl method signature does not match trait method signature",
is_externally_loaded: false,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4817/// The `refining_impl_trait_internal` lint detects `impl Trait` return
4818 /// types in method signatures that are refined by a trait implementation,
4819 /// meaning the implementation adds information about the return type that
4820 /// is not present in the trait.
4821 ///
4822 /// ### Example
4823 ///
4824 /// ```rust,compile_fail
4825 /// #![deny(refining_impl_trait)]
4826 ///
4827 /// use std::fmt::Display;
4828 ///
4829 /// trait AsDisplay {
4830 /// fn as_display(&self) -> impl Display;
4831 /// }
4832 ///
4833 /// impl<'s> AsDisplay for &'s str {
4834 /// fn as_display(&self) -> Self {
4835 /// *self
4836 /// }
4837 /// }
4838 ///
4839 /// fn main() {
4840 /// // users can observe that the return type of
4841 /// // `<&str as AsDisplay>::as_display()` is `&str`.
4842 /// let _x: &str = "".as_display();
4843 /// }
4844 /// ```
4845 ///
4846 /// {{produces}}
4847 ///
4848 /// ### Explanation
4849 ///
4850 /// Callers of methods for types where the implementation is known are
4851 /// able to observe the types written in the impl signature. This may be
4852 /// intended behavior, but may also lead to implementation details being
4853 /// revealed unintentionally. In particular, it may pose a semver hazard
4854 /// for authors of libraries who do not wish to make stronger guarantees
4855 /// about the types than what is written in the trait signature.
4856 ///
4857 /// `refining_impl_trait` is a lint group composed of two lints:
4858 ///
4859 /// * `refining_impl_trait_reachable`, for refinements that are publically
4860 /// reachable outside a crate, and
4861 /// * `refining_impl_trait_internal`, for refinements that are only visible
4862 /// within a crate.
4863 ///
4864 /// We are seeking feedback on each of these lints; see issue
4865 /// [#121718](https://github.com/rust-lang/rust/issues/121718) for more
4866 /// information.
4867pub REFINING_IMPL_TRAIT_INTERNAL,
4868 Warn,
4869"impl trait in impl method signature does not match trait method signature",
4870}48714872#[doc =
r" The `private_macro_use` lint detects private macros that are imported"]
#[doc = r" with `#[macro_use]`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs extern crate)"]
#[doc = r" // extern_macro.rs"]
#[doc = r" macro_rules! foo_ { () => {}; }"]
#[doc = r" use foo_ as foo;"]
#[doc = r""]
#[doc = r" // code.rs"]
#[doc = r""]
#[doc = r" #![deny(private_macro_use)]"]
#[doc = r""]
#[doc = r" #[macro_use]"]
#[doc = r" extern crate extern_macro;"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" foo!();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" error: cannot find macro `foo` in this scope"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" This lint arises from overlooking visibility checks for macros"]
#[doc = r" in an external crate."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a"]
#[doc = r" hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static PRIVATE_MACRO_USE: &crate::Lint =
&crate::Lint {
name: "PRIVATE_MACRO_USE",
default_level: crate::Deny,
desc: "detects certain macro bindings that should not be re-exported",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 120192,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4873/// The `private_macro_use` lint detects private macros that are imported
4874 /// with `#[macro_use]`.
4875 ///
4876 /// ### Example
4877 ///
4878 /// ```rust,ignore (needs extern crate)
4879 /// // extern_macro.rs
4880 /// macro_rules! foo_ { () => {}; }
4881 /// use foo_ as foo;
4882 ///
4883 /// // code.rs
4884 ///
4885 /// #![deny(private_macro_use)]
4886 ///
4887 /// #[macro_use]
4888 /// extern crate extern_macro;
4889 ///
4890 /// fn main() {
4891 /// foo!();
4892 /// }
4893 /// ```
4894 ///
4895 /// This will produce:
4896 ///
4897 /// ```text
4898 /// error: cannot find macro `foo` in this scope
4899 /// ```
4900 ///
4901 /// ### Explanation
4902 ///
4903 /// This lint arises from overlooking visibility checks for macros
4904 /// in an external crate.
4905 ///
4906 /// This is a [future-incompatible] lint to transition this to a
4907 /// hard error in the future.
4908 ///
4909 /// [future-incompatible]: ../index.md#future-incompatible-lints
4910pub PRIVATE_MACRO_USE,
4911 Deny,
4912"detects certain macro bindings that should not be re-exported",
4913 @future_incompatible = FutureIncompatibleInfo {
4914 reason: fcw!(FutureReleaseError #120192),
4915 report_in_deps: true,
4916 };
4917}49184919#[doc =
r" The `uncovered_param_in_projection` lint detects a violation of one of Rust's orphan rules for"]
#[doc =
r" foreign trait implementations that concerns the use of type parameters inside trait associated"]
#[doc =
r#" type paths ("projections") whose output may not be a local type that is mistakenly considered"#]
#[doc =
r#" to "cover" said parameters which is **unsound** and which may be rejected by a future version"#]
#[doc = r" of the compiler."]
#[doc = r""]
#[doc = r" Originally reported in [#99554]."]
#[doc = r""]
#[doc = r" [#99554]: https://github.com/rust-lang/rust/issues/99554"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (dependent)"]
#[doc = r" // dependency.rs"]
#[doc = r#" #![crate_type = "lib"]"#]
#[doc = r""]
#[doc = r" pub trait Trait<T, U> {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ```edition2021,ignore (needs dependency)"]
#[doc = r" // dependent.rs"]
#[doc = r" trait Identity {"]
#[doc = r" type Output;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" impl<T> Identity for T {"]
#[doc = r" type Output = T;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" struct Local;"]
#[doc = r""]
#[doc =
r" impl<T> dependency::Trait<Local, T> for <T as Identity>::Output {}"]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r" warning[E0210]: type parameter `T` must be covered by another type when it appears before the first local type (`Local`)"]
#[doc = r" --> dependent.rs:11:6"]
#[doc = r" |"]
#[doc =
r" 11 | impl<T> dependency::Trait<Local, T> for <T as Identity>::Output {}"]
#[doc =
r" | ^ type parameter `T` must be covered by another type when it appears before the first local type (`Local`)"]
#[doc = r" |"]
#[doc =
r" = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!"]
#[doc =
r" = note: for more information, see issue #124559 <https://github.com/rust-lang/rust/issues/124559>"]
#[doc =
r" = note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local, and no uncovered type parameters appear before that first local type"]
#[doc =
r" = note: in this case, 'before' refers to the following order: `impl<..> ForeignTrait<T1, ..., Tn> for T0`, where `T0` is the first and `Tn` is the last"]
#[doc = r" = note: `#[warn(uncovered_param_in_projection)]` on by default"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" FIXME(fmease): Write explainer."]
pub static UNCOVERED_PARAM_IN_PROJECTION: &crate::Lint =
&crate::Lint {
name: "UNCOVERED_PARAM_IN_PROJECTION",
default_level: crate::Warn,
desc: "impl contains type parameters that are not covered",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 124559,
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4920/// The `uncovered_param_in_projection` lint detects a violation of one of Rust's orphan rules for
4921 /// foreign trait implementations that concerns the use of type parameters inside trait associated
4922 /// type paths ("projections") whose output may not be a local type that is mistakenly considered
4923 /// to "cover" said parameters which is **unsound** and which may be rejected by a future version
4924 /// of the compiler.
4925 ///
4926 /// Originally reported in [#99554].
4927 ///
4928 /// [#99554]: https://github.com/rust-lang/rust/issues/99554
4929 ///
4930 /// ### Example
4931 ///
4932 /// ```rust,ignore (dependent)
4933 /// // dependency.rs
4934 /// #![crate_type = "lib"]
4935 ///
4936 /// pub trait Trait<T, U> {}
4937 /// ```
4938 ///
4939 /// ```edition2021,ignore (needs dependency)
4940 /// // dependent.rs
4941 /// trait Identity {
4942 /// type Output;
4943 /// }
4944 ///
4945 /// impl<T> Identity for T {
4946 /// type Output = T;
4947 /// }
4948 ///
4949 /// struct Local;
4950 ///
4951 /// impl<T> dependency::Trait<Local, T> for <T as Identity>::Output {}
4952 ///
4953 /// fn main() {}
4954 /// ```
4955 ///
4956 /// This will produce:
4957 ///
4958 /// ```text
4959 /// warning[E0210]: type parameter `T` must be covered by another type when it appears before the first local type (`Local`)
4960 /// --> dependent.rs:11:6
4961 /// |
4962 /// 11 | impl<T> dependency::Trait<Local, T> for <T as Identity>::Output {}
4963 /// | ^ type parameter `T` must be covered by another type when it appears before the first local type (`Local`)
4964 /// |
4965 /// = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
4966 /// = note: for more information, see issue #124559 <https://github.com/rust-lang/rust/issues/124559>
4967 /// = note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local, and no uncovered type parameters appear before that first local type
4968 /// = note: in this case, 'before' refers to the following order: `impl<..> ForeignTrait<T1, ..., Tn> for T0`, where `T0` is the first and `Tn` is the last
4969 /// = note: `#[warn(uncovered_param_in_projection)]` on by default
4970 /// ```
4971 ///
4972 /// ### Explanation
4973 ///
4974 /// FIXME(fmease): Write explainer.
4975pub UNCOVERED_PARAM_IN_PROJECTION,
4976 Warn,
4977"impl contains type parameters that are not covered",
4978 @future_incompatible = FutureIncompatibleInfo {
4979 reason: fcw!(FutureReleaseError #124559),
4980 };
4981}49824983#[doc =
r" The `deprecated_safe_2024` lint detects unsafe functions being used as"]
#[doc = r" safe functions."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2021,compile_fail"]
#[doc = r" #![deny(deprecated_safe)]"]
#[doc = r" // edition 2021"]
#[doc = r" use std::env;"]
#[doc = r" fn enable_backtrace() {"]
#[doc = r#" env::set_var("RUST_BACKTRACE", "1");"#]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Rust [editions] allow the language to evolve without breaking backward"]
#[doc =
r" compatibility. This lint catches code that uses `unsafe` functions that"]
#[doc =
r" were declared as safe (non-`unsafe`) in editions prior to Rust 2024. If"]
#[doc =
r" you switch the compiler to Rust 2024 without updating the code, then it"]
#[doc =
r" will fail to compile if you are using a function previously marked as"]
#[doc = r" safe."]
#[doc = r""]
#[doc =
r" You can audit the code to see if it suffices the preconditions of the"]
#[doc =
r" `unsafe` code, and if it does, you can wrap it in an `unsafe` block. If"]
#[doc =
r" you can't fulfill the preconditions, you probably need to switch to a"]
#[doc = r" different way of doing what you want to achieve."]
#[doc = r""]
#[doc =
r" This lint can automatically wrap the calls in `unsafe` blocks, but this"]
#[doc = r" obviously cannot verify that the preconditions of the `unsafe`"]
#[doc = r" functions are fulfilled, so that is still up to the user."]
#[doc = r""]
#[doc =
r#" The lint is currently "allow" by default, but that might change in the"#]
#[doc = r" future."]
#[doc = r""]
#[doc = r" [editions]: https://doc.rust-lang.org/edition-guide/"]
pub static DEPRECATED_SAFE_2024: &crate::Lint =
&crate::Lint {
name: "DEPRECATED_SAFE_2024",
default_level: crate::Allow,
desc: "detects unsafe functions being used as safe functions",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "newly-unsafe-functions",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
4984/// The `deprecated_safe_2024` lint detects unsafe functions being used as
4985 /// safe functions.
4986 ///
4987 /// ### Example
4988 ///
4989 /// ```rust,edition2021,compile_fail
4990 /// #![deny(deprecated_safe)]
4991 /// // edition 2021
4992 /// use std::env;
4993 /// fn enable_backtrace() {
4994 /// env::set_var("RUST_BACKTRACE", "1");
4995 /// }
4996 /// ```
4997 ///
4998 /// {{produces}}
4999 ///
5000 /// ### Explanation
5001 ///
5002 /// Rust [editions] allow the language to evolve without breaking backward
5003 /// compatibility. This lint catches code that uses `unsafe` functions that
5004 /// were declared as safe (non-`unsafe`) in editions prior to Rust 2024. If
5005 /// you switch the compiler to Rust 2024 without updating the code, then it
5006 /// will fail to compile if you are using a function previously marked as
5007 /// safe.
5008 ///
5009 /// You can audit the code to see if it suffices the preconditions of the
5010 /// `unsafe` code, and if it does, you can wrap it in an `unsafe` block. If
5011 /// you can't fulfill the preconditions, you probably need to switch to a
5012 /// different way of doing what you want to achieve.
5013 ///
5014 /// This lint can automatically wrap the calls in `unsafe` blocks, but this
5015 /// obviously cannot verify that the preconditions of the `unsafe`
5016 /// functions are fulfilled, so that is still up to the user.
5017 ///
5018 /// The lint is currently "allow" by default, but that might change in the
5019 /// future.
5020 ///
5021 /// [editions]: https://doc.rust-lang.org/edition-guide/
5022pub DEPRECATED_SAFE_2024,
5023 Allow,
5024"detects unsafe functions being used as safe functions",
5025 @future_incompatible = FutureIncompatibleInfo {
5026 reason: fcw!(EditionError 2024 "newly-unsafe-functions"),
5027 };
5028}50295030#[doc =
r" The `missing_unsafe_on_extern` lint detects missing unsafe keyword on extern declarations."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2021"]
#[doc = r" #![warn(missing_unsafe_on_extern)]"]
#[doc = r" #![allow(dead_code)]"]
#[doc = r""]
#[doc = r#" extern "C" {"#]
#[doc = r" fn foo(_: i32);"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Declaring extern items, even without ever using them, can cause Undefined Behavior. We"]
#[doc = r" should consider all sources of Undefined Behavior to be unsafe."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a"]
#[doc = r" hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static MISSING_UNSAFE_ON_EXTERN: &crate::Lint =
&crate::Lint {
name: "MISSING_UNSAFE_ON_EXTERN",
default_level: crate::Allow,
desc: "detects missing unsafe keyword on extern declarations",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "unsafe-extern",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5031/// The `missing_unsafe_on_extern` lint detects missing unsafe keyword on extern declarations.
5032 ///
5033 /// ### Example
5034 ///
5035 /// ```rust,edition2021
5036 /// #![warn(missing_unsafe_on_extern)]
5037 /// #![allow(dead_code)]
5038 ///
5039 /// extern "C" {
5040 /// fn foo(_: i32);
5041 /// }
5042 ///
5043 /// fn main() {}
5044 /// ```
5045 ///
5046 /// {{produces}}
5047 ///
5048 /// ### Explanation
5049 ///
5050 /// Declaring extern items, even without ever using them, can cause Undefined Behavior. We
5051 /// should consider all sources of Undefined Behavior to be unsafe.
5052 ///
5053 /// This is a [future-incompatible] lint to transition this to a
5054 /// hard error in the future.
5055 ///
5056 /// [future-incompatible]: ../index.md#future-incompatible-lints
5057pub MISSING_UNSAFE_ON_EXTERN,
5058 Allow,
5059"detects missing unsafe keyword on extern declarations",
5060 @future_incompatible = FutureIncompatibleInfo {
5061 reason: fcw!(EditionError 2024 "unsafe-extern"),
5062 };
5063}50645065#[doc =
r" The `unsafe_attr_outside_unsafe` lint detects a missing unsafe keyword"]
#[doc = r" on attributes considered unsafe."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2021"]
#[doc = r" #![warn(unsafe_attr_outside_unsafe)]"]
#[doc = r""]
#[doc = r" #[no_mangle]"]
#[doc = r#" extern "C" fn foo() {}"#]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Some attributes (e.g. `no_mangle`, `export_name`, `link_section` -- see"]
#[doc =
r#" [issue #82499] for a more complete list) are considered "unsafe" attributes."#]
#[doc = r" An unsafe attribute must only be used inside unsafe(...)."]
#[doc = r""]
#[doc =
r" This lint can automatically wrap the attributes in `unsafe(...)` , but this"]
#[doc = r" obviously cannot verify that the preconditions of the `unsafe`"]
#[doc = r" attributes are fulfilled, so that is still up to the user."]
#[doc = r""]
#[doc =
r#" The lint is currently "allow" by default, but that might change in the"#]
#[doc = r" future."]
#[doc = r""]
#[doc = r" [editions]: https://doc.rust-lang.org/edition-guide/"]
#[doc = r" [issue #82499]: https://github.com/rust-lang/rust/issues/82499"]
pub static UNSAFE_ATTR_OUTSIDE_UNSAFE: &crate::Lint =
&crate::Lint {
name: "UNSAFE_ATTR_OUTSIDE_UNSAFE",
default_level: crate::Allow,
desc: "detects unsafe attributes outside of unsafe",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "unsafe-attributes",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5066/// The `unsafe_attr_outside_unsafe` lint detects a missing unsafe keyword
5067 /// on attributes considered unsafe.
5068 ///
5069 /// ### Example
5070 ///
5071 /// ```rust,edition2021
5072 /// #![warn(unsafe_attr_outside_unsafe)]
5073 ///
5074 /// #[no_mangle]
5075 /// extern "C" fn foo() {}
5076 ///
5077 /// fn main() {}
5078 /// ```
5079 ///
5080 /// {{produces}}
5081 ///
5082 /// ### Explanation
5083 ///
5084 /// Some attributes (e.g. `no_mangle`, `export_name`, `link_section` -- see
5085 /// [issue #82499] for a more complete list) are considered "unsafe" attributes.
5086 /// An unsafe attribute must only be used inside unsafe(...).
5087 ///
5088 /// This lint can automatically wrap the attributes in `unsafe(...)` , but this
5089 /// obviously cannot verify that the preconditions of the `unsafe`
5090 /// attributes are fulfilled, so that is still up to the user.
5091 ///
5092 /// The lint is currently "allow" by default, but that might change in the
5093 /// future.
5094 ///
5095 /// [editions]: https://doc.rust-lang.org/edition-guide/
5096 /// [issue #82499]: https://github.com/rust-lang/rust/issues/82499
5097pub UNSAFE_ATTR_OUTSIDE_UNSAFE,
5098 Allow,
5099"detects unsafe attributes outside of unsafe",
5100 @future_incompatible = FutureIncompatibleInfo {
5101 reason: fcw!(EditionError 2024 "unsafe-attributes"),
5102 };
5103}51045105#[doc =
r" The `out_of_scope_macro_calls` lint detects `macro_rules` called when they are not in scope,"]
#[doc = r" above their definition, which may happen in key-value attributes."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![doc = in_root!()]"]
#[doc = r""]
#[doc = r#" macro_rules! in_root { () => { "" } }"#]
#[doc = r""]
#[doc = r" fn main() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The scope in which a `macro_rules` item is visible starts at that item and continues"]
#[doc =
r" below it. This is more similar to `let` than to other items, which are in scope both above"]
#[doc = r" and below their definition."]
#[doc =
r" Due to a bug `macro_rules` were accidentally in scope inside some key-value attributes"]
#[doc = r" above their definition. The lint catches such cases."]
#[doc =
r" To address the issue turn the `macro_rules` into a regularly scoped item by importing it"]
#[doc = r" with `use`."]
#[doc = r""]
#[doc = r" This is a [future-incompatible] lint to transition this to a"]
#[doc = r" hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static OUT_OF_SCOPE_MACRO_CALLS: &crate::Lint =
&crate::Lint {
name: "OUT_OF_SCOPE_MACRO_CALLS",
default_level: crate::Deny,
desc: "detects out of scope calls to `macro_rules` in key-value attributes",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 124535,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5106/// The `out_of_scope_macro_calls` lint detects `macro_rules` called when they are not in scope,
5107 /// above their definition, which may happen in key-value attributes.
5108 ///
5109 /// ### Example
5110 ///
5111 /// ```rust,compile_fail
5112 /// #![doc = in_root!()]
5113 ///
5114 /// macro_rules! in_root { () => { "" } }
5115 ///
5116 /// fn main() {}
5117 /// ```
5118 ///
5119 /// {{produces}}
5120 ///
5121 /// ### Explanation
5122 ///
5123 /// The scope in which a `macro_rules` item is visible starts at that item and continues
5124 /// below it. This is more similar to `let` than to other items, which are in scope both above
5125 /// and below their definition.
5126 /// Due to a bug `macro_rules` were accidentally in scope inside some key-value attributes
5127 /// above their definition. The lint catches such cases.
5128 /// To address the issue turn the `macro_rules` into a regularly scoped item by importing it
5129 /// with `use`.
5130 ///
5131 /// This is a [future-incompatible] lint to transition this to a
5132 /// hard error in the future.
5133 ///
5134 /// [future-incompatible]: ../index.md#future-incompatible-lints
5135pub OUT_OF_SCOPE_MACRO_CALLS,
5136 Deny,
5137"detects out of scope calls to `macro_rules` in key-value attributes",
5138 @future_incompatible = FutureIncompatibleInfo {
5139 reason: fcw!(FutureReleaseError #124535),
5140 report_in_deps: true,
5141 };
5142}51435144#[doc =
r" The `resolving_to_items_shadowing_supertrait_items` lint detects when the"]
#[doc =
r" usage of an item that is provided by both a subtrait and supertrait"]
#[doc = r" is shadowed, preferring the subtrait."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![feature(supertrait_item_shadowing)]"]
#[doc = r" #![deny(resolving_to_items_shadowing_supertrait_items)]"]
#[doc = r""]
#[doc = r" trait Upstream {"]
#[doc = r" fn hello(&self) {}"]
#[doc = r" }"]
#[doc = r" impl<T> Upstream for T {}"]
#[doc = r""]
#[doc = r" trait Downstream: Upstream {"]
#[doc = r" fn hello(&self) {}"]
#[doc = r" }"]
#[doc = r" impl<T> Downstream for T {}"]
#[doc = r""]
#[doc = r" struct MyType;"]
#[doc = r" MyType.hello();"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" RFC 3624 specified a heuristic in which a supertrait item would be"]
#[doc = r" shadowed by a subtrait item when ambiguity occurs during item"]
#[doc = r" selection. In order to mitigate side-effects of this happening"]
#[doc =
r" silently, this lint detects these cases when users want to deny them"]
#[doc = r" or fix the call sites."]
pub static RESOLVING_TO_ITEMS_SHADOWING_SUPERTRAIT_ITEMS: &crate::Lint =
&crate::Lint {
name: "RESOLVING_TO_ITEMS_SHADOWING_SUPERTRAIT_ITEMS",
default_level: crate::Allow,
desc: "detects when a supertrait item is shadowed by a subtrait item",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::supertrait_item_shadowing),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5145/// The `resolving_to_items_shadowing_supertrait_items` lint detects when the
5146 /// usage of an item that is provided by both a subtrait and supertrait
5147 /// is shadowed, preferring the subtrait.
5148 ///
5149 /// ### Example
5150 ///
5151 /// ```rust,compile_fail
5152 /// #![feature(supertrait_item_shadowing)]
5153 /// #![deny(resolving_to_items_shadowing_supertrait_items)]
5154 ///
5155 /// trait Upstream {
5156 /// fn hello(&self) {}
5157 /// }
5158 /// impl<T> Upstream for T {}
5159 ///
5160 /// trait Downstream: Upstream {
5161 /// fn hello(&self) {}
5162 /// }
5163 /// impl<T> Downstream for T {}
5164 ///
5165 /// struct MyType;
5166 /// MyType.hello();
5167 /// ```
5168 ///
5169 /// {{produces}}
5170 ///
5171 /// ### Explanation
5172 ///
5173 /// RFC 3624 specified a heuristic in which a supertrait item would be
5174 /// shadowed by a subtrait item when ambiguity occurs during item
5175 /// selection. In order to mitigate side-effects of this happening
5176 /// silently, this lint detects these cases when users want to deny them
5177 /// or fix the call sites.
5178pub RESOLVING_TO_ITEMS_SHADOWING_SUPERTRAIT_ITEMS,
5179// FIXME(supertrait_item_shadowing): It is not decided if this should
5180 // warn by default at the call site.
5181Allow,
5182"detects when a supertrait item is shadowed by a subtrait item",
5183 @feature_gate = supertrait_item_shadowing;
5184}51855186#[doc = r" The `shadowing_supertrait_items` lint detects when the"]
#[doc = r" definition of an item that is provided by both a subtrait and"]
#[doc = r" supertrait is shadowed, preferring the subtrait."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![feature(supertrait_item_shadowing)]"]
#[doc = r" #![deny(shadowing_supertrait_items)]"]
#[doc = r""]
#[doc = r" trait Upstream {"]
#[doc = r" fn hello(&self) {}"]
#[doc = r" }"]
#[doc = r" impl<T> Upstream for T {}"]
#[doc = r""]
#[doc = r" trait Downstream: Upstream {"]
#[doc = r" fn hello(&self) {}"]
#[doc = r" }"]
#[doc = r" impl<T> Downstream for T {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" RFC 3624 specified a heuristic in which a supertrait item would be"]
#[doc = r" shadowed by a subtrait item when ambiguity occurs during item"]
#[doc = r" selection. In order to mitigate side-effects of this happening"]
#[doc =
r" silently, this lint detects these cases when users want to deny them"]
#[doc = r" or fix their trait definitions."]
pub static SHADOWING_SUPERTRAIT_ITEMS: &crate::Lint =
&crate::Lint {
name: "SHADOWING_SUPERTRAIT_ITEMS",
default_level: crate::Allow,
desc: "detects when a supertrait item is shadowed by a subtrait item",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::supertrait_item_shadowing),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5187/// The `shadowing_supertrait_items` lint detects when the
5188 /// definition of an item that is provided by both a subtrait and
5189 /// supertrait is shadowed, preferring the subtrait.
5190 ///
5191 /// ### Example
5192 ///
5193 /// ```rust,compile_fail
5194 /// #![feature(supertrait_item_shadowing)]
5195 /// #![deny(shadowing_supertrait_items)]
5196 ///
5197 /// trait Upstream {
5198 /// fn hello(&self) {}
5199 /// }
5200 /// impl<T> Upstream for T {}
5201 ///
5202 /// trait Downstream: Upstream {
5203 /// fn hello(&self) {}
5204 /// }
5205 /// impl<T> Downstream for T {}
5206 /// ```
5207 ///
5208 /// {{produces}}
5209 ///
5210 /// ### Explanation
5211 ///
5212 /// RFC 3624 specified a heuristic in which a supertrait item would be
5213 /// shadowed by a subtrait item when ambiguity occurs during item
5214 /// selection. In order to mitigate side-effects of this happening
5215 /// silently, this lint detects these cases when users want to deny them
5216 /// or fix their trait definitions.
5217pub SHADOWING_SUPERTRAIT_ITEMS,
5218// FIXME(supertrait_item_shadowing): It is not decided if this should
5219 // warn by default at the usage site.
5220Allow,
5221"detects when a supertrait item is shadowed by a subtrait item",
5222 @feature_gate = supertrait_item_shadowing;
5223}52245225#[doc =
r" The `tail_expr_drop_order` lint looks for those values generated at the tail expression location,"]
#[doc = r" that runs a custom `Drop` destructor."]
#[doc =
r" Some of them may be dropped earlier in Edition 2024 that they used to in Edition 2021 and prior."]
#[doc =
r" This lint detects those cases and provides you information on those values and their custom destructor implementations."]
#[doc = r" Your discretion on this information is required."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r" ```rust,edition2021"]
#[doc = r" #![warn(tail_expr_drop_order)]"]
#[doc = r" struct Droppy(i32);"]
#[doc = r" impl Droppy {"]
#[doc = r" fn get(&self) -> i32 {"]
#[doc = r" self.0"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" impl Drop for Droppy {"]
#[doc = r" fn drop(&mut self) {"]
#[doc =
r" // This is a custom destructor and it induces side-effects that is observable"]
#[doc =
r" // especially when the drop order at a tail expression changes."]
#[doc = r#" println!("loud drop {}", self.0);"#]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" fn edition_2021() -> i32 {"]
#[doc = r" let another_droppy = Droppy(0);"]
#[doc = r" Droppy(1).get()"]
#[doc = r" }"]
#[doc = r" fn main() {"]
#[doc = r" edition_2021();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" In tail expression of blocks or function bodies,"]
#[doc =
r" values of type with significant `Drop` implementation has an ill-specified drop order"]
#[doc =
r" before Edition 2024 so that they are dropped only after dropping local variables."]
#[doc = r" Edition 2024 introduces a new rule with drop orders for them,"]
#[doc = r" so that they are dropped first before dropping local variables."]
#[doc = r""]
#[doc =
r" A significant `Drop::drop` destructor here refers to an explicit, arbitrary"]
#[doc =
r" implementation of the `Drop` trait on the type, with exceptions including `Vec`,"]
#[doc =
r" `Box`, `Rc`, `BTreeMap` and `HashMap` that are marked by the compiler otherwise"]
#[doc =
r" so long that the generic types have no significant destructor recursively."]
#[doc =
r" In other words, a type has a significant drop destructor when it has a `Drop` implementation"]
#[doc = r" or its destructor invokes a significant destructor on a type."]
#[doc =
r" Since we cannot completely reason about the change by just inspecting the existence of"]
#[doc =
r" a significant destructor, this lint remains only a suggestion and is set to `allow` by default."]
#[doc = r""]
#[doc =
r" This lint only points out the issue with `Droppy`, which will be dropped before `another_droppy`"]
#[doc = r" does in Edition 2024."]
#[doc = r" No fix will be proposed by this lint."]
#[doc =
r" However, the most probable fix is to hoist `Droppy` into its own local variable binding."]
#[doc = r" ```rust"]
#[doc = r" struct Droppy(i32);"]
#[doc = r" impl Droppy {"]
#[doc = r" fn get(&self) -> i32 {"]
#[doc = r" self.0"]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r" fn edition_2024() -> i32 {"]
#[doc = r" let value = Droppy(0);"]
#[doc = r" let another_droppy = Droppy(1);"]
#[doc = r" value.get()"]
#[doc = r" }"]
#[doc = r" ```"]
pub static TAIL_EXPR_DROP_ORDER: &crate::Lint =
&crate::Lint {
name: "TAIL_EXPR_DROP_ORDER",
default_level: crate::Allow,
desc: "Detect and warn on significant change in drop order in tail expression location",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionSemanticsChange(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "temporary-tail-expr-scope",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5226/// The `tail_expr_drop_order` lint looks for those values generated at the tail expression location,
5227 /// that runs a custom `Drop` destructor.
5228 /// Some of them may be dropped earlier in Edition 2024 that they used to in Edition 2021 and prior.
5229 /// This lint detects those cases and provides you information on those values and their custom destructor implementations.
5230 /// Your discretion on this information is required.
5231 ///
5232 /// ### Example
5233 /// ```rust,edition2021
5234 /// #![warn(tail_expr_drop_order)]
5235 /// struct Droppy(i32);
5236 /// impl Droppy {
5237 /// fn get(&self) -> i32 {
5238 /// self.0
5239 /// }
5240 /// }
5241 /// impl Drop for Droppy {
5242 /// fn drop(&mut self) {
5243 /// // This is a custom destructor and it induces side-effects that is observable
5244 /// // especially when the drop order at a tail expression changes.
5245 /// println!("loud drop {}", self.0);
5246 /// }
5247 /// }
5248 /// fn edition_2021() -> i32 {
5249 /// let another_droppy = Droppy(0);
5250 /// Droppy(1).get()
5251 /// }
5252 /// fn main() {
5253 /// edition_2021();
5254 /// }
5255 /// ```
5256 ///
5257 /// {{produces}}
5258 ///
5259 /// ### Explanation
5260 ///
5261 /// In tail expression of blocks or function bodies,
5262 /// values of type with significant `Drop` implementation has an ill-specified drop order
5263 /// before Edition 2024 so that they are dropped only after dropping local variables.
5264 /// Edition 2024 introduces a new rule with drop orders for them,
5265 /// so that they are dropped first before dropping local variables.
5266 ///
5267 /// A significant `Drop::drop` destructor here refers to an explicit, arbitrary
5268 /// implementation of the `Drop` trait on the type, with exceptions including `Vec`,
5269 /// `Box`, `Rc`, `BTreeMap` and `HashMap` that are marked by the compiler otherwise
5270 /// so long that the generic types have no significant destructor recursively.
5271 /// In other words, a type has a significant drop destructor when it has a `Drop` implementation
5272 /// or its destructor invokes a significant destructor on a type.
5273 /// Since we cannot completely reason about the change by just inspecting the existence of
5274 /// a significant destructor, this lint remains only a suggestion and is set to `allow` by default.
5275 ///
5276 /// This lint only points out the issue with `Droppy`, which will be dropped before `another_droppy`
5277 /// does in Edition 2024.
5278 /// No fix will be proposed by this lint.
5279 /// However, the most probable fix is to hoist `Droppy` into its own local variable binding.
5280 /// ```rust
5281 /// struct Droppy(i32);
5282 /// impl Droppy {
5283 /// fn get(&self) -> i32 {
5284 /// self.0
5285 /// }
5286 /// }
5287 /// fn edition_2024() -> i32 {
5288 /// let value = Droppy(0);
5289 /// let another_droppy = Droppy(1);
5290 /// value.get()
5291 /// }
5292 /// ```
5293pub TAIL_EXPR_DROP_ORDER,
5294 Allow,
5295"Detect and warn on significant change in drop order in tail expression location",
5296 @future_incompatible = FutureIncompatibleInfo {
5297 reason: fcw!(EditionSemanticsChange 2024 "temporary-tail-expr-scope"),
5298 };
5299}53005301#[doc =
r" The `rust_2024_guarded_string_incompatible_syntax` lint detects `#` tokens"]
#[doc =
r" that will be parsed as part of a guarded string literal in Rust 2024."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,edition2021,compile_fail"]
#[doc = r" #![deny(rust_2024_guarded_string_incompatible_syntax)]"]
#[doc = r""]
#[doc = r" macro_rules! m {"]
#[doc = r" (# $x:expr #) => ();"]
#[doc = r" (# $x:expr) => ();"]
#[doc = r" }"]
#[doc = r""]
#[doc = r##" m!(#"hey"#);"##]
#[doc = r#" m!(#"hello");"#]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r##" Prior to Rust 2024, `#"hey"#` is three tokens: the first `#`"##]
#[doc = r#" followed by the string literal `"hey"` then the final `#`."#]
#[doc = r" In Rust 2024, the whole sequence is considered a single token."]
#[doc = r""]
#[doc = r" This lint suggests to add whitespace between the leading `#`"]
#[doc = r" and the string to keep them separated in Rust 2024."]
#[allow(rustdoc::invalid_rust_codeblocks)]
pub static RUST_2024_GUARDED_STRING_INCOMPATIBLE_SYNTAX: &crate::Lint =
&crate::Lint {
name: "RUST_2024_GUARDED_STRING_INCOMPATIBLE_SYNTAX",
default_level: crate::Allow,
desc: "will be parsed as a guarded string in Rust 2024",
is_externally_loaded: false,
crate_level_only: true,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::EditionError(crate::EditionFcw {
edition: rustc_span::edition::Edition::Edition2024,
page_slug: "reserved-syntax",
}),
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5302/// The `rust_2024_guarded_string_incompatible_syntax` lint detects `#` tokens
5303 /// that will be parsed as part of a guarded string literal in Rust 2024.
5304 ///
5305 /// ### Example
5306 ///
5307 /// ```rust,edition2021,compile_fail
5308 /// #![deny(rust_2024_guarded_string_incompatible_syntax)]
5309 ///
5310 /// macro_rules! m {
5311 /// (# $x:expr #) => ();
5312 /// (# $x:expr) => ();
5313 /// }
5314 ///
5315 /// m!(#"hey"#);
5316 /// m!(#"hello");
5317 /// ```
5318 ///
5319 /// {{produces}}
5320 ///
5321 /// ### Explanation
5322 ///
5323 /// Prior to Rust 2024, `#"hey"#` is three tokens: the first `#`
5324 /// followed by the string literal `"hey"` then the final `#`.
5325 /// In Rust 2024, the whole sequence is considered a single token.
5326 ///
5327 /// This lint suggests to add whitespace between the leading `#`
5328 /// and the string to keep them separated in Rust 2024.
5329// Allow this lint -- rustdoc doesn't yet support threading edition into this lint's parser.
5330#[allow(rustdoc::invalid_rust_codeblocks)]
5331pub RUST_2024_GUARDED_STRING_INCOMPATIBLE_SYNTAX,
5332 Allow,
5333"will be parsed as a guarded string in Rust 2024",
5334 @future_incompatible = FutureIncompatibleInfo {
5335 reason: fcw!(EditionError 2024 "reserved-syntax"),
5336 };
5337 crate_level_only
5338}53395340#[doc =
r#" The `aarch64_softfloat_neon` lint detects usage of `#[target_feature(enable = "neon")]` on"#]
#[doc =
r" softfloat aarch64 targets. Enabling this target feature causes LLVM to alter the ABI of"]
#[doc = r" function calls, making this attribute unsound to use."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (needs aarch64-unknown-none-softfloat)"]
#[doc = r#" #[target_feature(enable = "neon")]"#]
#[doc = r" fn with_neon() {}"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r" error: enabling the `neon` target feature on the current target is unsound due to ABI issues"]
#[doc = r" --> $DIR/abi-incompatible-target-feature-attribute-fcw.rs:11:18"]
#[doc = r" |"]
#[doc = r#" | #[target_feature(enable = "neon")]"#]
#[doc = r" | ^^^^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc =
r" = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!"]
#[doc =
r" = note: for more information, see issue #134375 <https://github.com/rust-lang/rust/issues/134375>"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" If a function like `with_neon` above ends up containing calls to LLVM builtins, those will"]
#[doc =
r" not use the correct ABI. This is caused by a lack of support in LLVM for mixing code with"]
#[doc =
r" and without the `neon` target feature. The target feature should never have been stabilized"]
#[doc =
r" on this target due to this issue, but the problem was not known at the time of"]
#[doc = r" stabilization."]
pub static AARCH64_SOFTFLOAT_NEON: &crate::Lint =
&crate::Lint {
name: "AARCH64_SOFTFLOAT_NEON",
default_level: crate::Warn,
desc: "detects code that could be affected by ABI issues on aarch64 softfloat targets",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 134375,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5341/// The `aarch64_softfloat_neon` lint detects usage of `#[target_feature(enable = "neon")]` on
5342 /// softfloat aarch64 targets. Enabling this target feature causes LLVM to alter the ABI of
5343 /// function calls, making this attribute unsound to use.
5344 ///
5345 /// ### Example
5346 ///
5347 /// ```rust,ignore (needs aarch64-unknown-none-softfloat)
5348 /// #[target_feature(enable = "neon")]
5349 /// fn with_neon() {}
5350 /// ```
5351 ///
5352 /// This will produce:
5353 ///
5354 /// ```text
5355 /// error: enabling the `neon` target feature on the current target is unsound due to ABI issues
5356 /// --> $DIR/abi-incompatible-target-feature-attribute-fcw.rs:11:18
5357 /// |
5358 /// | #[target_feature(enable = "neon")]
5359 /// | ^^^^^^^^^^^^^^^
5360 /// |
5361 /// = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
5362 /// = note: for more information, see issue #134375 <https://github.com/rust-lang/rust/issues/134375>
5363 /// ```
5364 ///
5365 /// ### Explanation
5366 ///
5367 /// If a function like `with_neon` above ends up containing calls to LLVM builtins, those will
5368 /// not use the correct ABI. This is caused by a lack of support in LLVM for mixing code with
5369 /// and without the `neon` target feature. The target feature should never have been stabilized
5370 /// on this target due to this issue, but the problem was not known at the time of
5371 /// stabilization.
5372pub AARCH64_SOFTFLOAT_NEON,
5373 Warn,
5374"detects code that could be affected by ABI issues on aarch64 softfloat targets",
5375 @future_incompatible = FutureIncompatibleInfo {
5376 reason: fcw!(FutureReleaseError #134375),
5377 report_in_deps: true,
5378 };
5379}53805381#[doc =
r" The `tail_call_track_caller` lint detects usage of `become` attempting to tail call"]
#[doc = r" a function marked with `#[track_caller]`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" #![feature(explicit_tail_calls)]"]
#[doc = r" #![expect(incomplete_features)]"]
#[doc = r""]
#[doc = r" #[track_caller]"]
#[doc = r" fn f() {}"]
#[doc = r""]
#[doc = r" fn g() {"]
#[doc = r" become f();"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" g();"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Due to implementation details of tail calls and `#[track_caller]` attribute, calls to"]
#[doc =
r" functions marked with `#[track_caller]` cannot become tail calls. As such using `become`"]
#[doc =
r" is no different than a normal call (except for changes in drop order)."]
pub static TAIL_CALL_TRACK_CALLER: &crate::Lint =
&crate::Lint {
name: "TAIL_CALL_TRACK_CALLER",
default_level: crate::Warn,
desc: "detects tail calls of functions marked with `#[track_caller]`",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::explicit_tail_calls),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5382/// The `tail_call_track_caller` lint detects usage of `become` attempting to tail call
5383 /// a function marked with `#[track_caller]`.
5384 ///
5385 /// ### Example
5386 ///
5387 /// ```rust
5388 /// #![feature(explicit_tail_calls)]
5389 /// #![expect(incomplete_features)]
5390 ///
5391 /// #[track_caller]
5392 /// fn f() {}
5393 ///
5394 /// fn g() {
5395 /// become f();
5396 /// }
5397 ///
5398 /// g();
5399 /// ```
5400 ///
5401 /// {{produces}}
5402 ///
5403 /// ### Explanation
5404 ///
5405 /// Due to implementation details of tail calls and `#[track_caller]` attribute, calls to
5406 /// functions marked with `#[track_caller]` cannot become tail calls. As such using `become`
5407 /// is no different than a normal call (except for changes in drop order).
5408pub TAIL_CALL_TRACK_CALLER,
5409 Warn,
5410"detects tail calls of functions marked with `#[track_caller]`",
5411 @feature_gate = explicit_tail_calls;
5412}5413#[doc =
r" The `repr_c_enums_larger_than_int` lint detects `repr(C)` enums with discriminant"]
#[doc = r" values that do not fit into a C `int` or `unsigned int`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (only errors on 64bit)"]
#[doc = r" #[repr(C)]"]
#[doc = r" enum E {"]
#[doc = r" V = 9223372036854775807, // i64::MAX"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc =
r" error: `repr(C)` enum discriminant does not fit into C `int` nor into C `unsigned int`"]
#[doc = r" --> $DIR/repr-c-big-discriminant1.rs:16:5"]
#[doc = r" |"]
#[doc = r" LL | A = 9223372036854775807, // i64::MAX"]
#[doc = r" | ^"]
#[doc = r" |"]
#[doc =
r" = note: `repr(C)` enums with big discriminants are non-portable, and their size in Rust might not match their size in C"]
#[doc =
r" = help: use `repr($int_ty)` instead to explicitly set the size of this enum"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" In C, enums with discriminants that do not all fit into an `int` or all fit into an"]
#[doc =
r" `unsigned int` are a portability hazard: such enums are only permitted since C23, and not"]
#[doc = r" supported e.g. by MSVC."]
#[doc = r""]
#[doc =
r" Furthermore, Rust interprets the discriminant values of `repr(C)` enums as expressions of"]
#[doc =
r" type `isize`. This makes it impossible to implement the C23 behavior of enums where the enum"]
#[doc =
r" discriminants have no predefined type and instead the enum uses a type large enough to hold"]
#[doc = r" all discriminants."]
#[doc = r""]
#[doc =
r" Therefore, `repr(C)` enums in Rust require that either all discriminants to fit into a C"]
#[doc = r" `int` or they all fit into an `unsigned int`."]
pub static REPR_C_ENUMS_LARGER_THAN_INT: &crate::Lint =
&crate::Lint {
name: "REPR_C_ENUMS_LARGER_THAN_INT",
default_level: crate::Warn,
desc: "repr(C) enums with discriminant values that do not fit into a C int",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 124403,
}),
report_in_deps: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5414/// The `repr_c_enums_larger_than_int` lint detects `repr(C)` enums with discriminant
5415 /// values that do not fit into a C `int` or `unsigned int`.
5416 ///
5417 /// ### Example
5418 ///
5419 /// ```rust,ignore (only errors on 64bit)
5420 /// #[repr(C)]
5421 /// enum E {
5422 /// V = 9223372036854775807, // i64::MAX
5423 /// }
5424 /// ```
5425 ///
5426 /// This will produce:
5427 ///
5428 /// ```text
5429 /// error: `repr(C)` enum discriminant does not fit into C `int` nor into C `unsigned int`
5430 /// --> $DIR/repr-c-big-discriminant1.rs:16:5
5431 /// |
5432 /// LL | A = 9223372036854775807, // i64::MAX
5433 /// | ^
5434 /// |
5435 /// = note: `repr(C)` enums with big discriminants are non-portable, and their size in Rust might not match their size in C
5436 /// = help: use `repr($int_ty)` instead to explicitly set the size of this enum
5437 /// ```
5438 ///
5439 /// ### Explanation
5440 ///
5441 /// In C, enums with discriminants that do not all fit into an `int` or all fit into an
5442 /// `unsigned int` are a portability hazard: such enums are only permitted since C23, and not
5443 /// supported e.g. by MSVC.
5444 ///
5445 /// Furthermore, Rust interprets the discriminant values of `repr(C)` enums as expressions of
5446 /// type `isize`. This makes it impossible to implement the C23 behavior of enums where the enum
5447 /// discriminants have no predefined type and instead the enum uses a type large enough to hold
5448 /// all discriminants.
5449 ///
5450 /// Therefore, `repr(C)` enums in Rust require that either all discriminants to fit into a C
5451 /// `int` or they all fit into an `unsigned int`.
5452pub REPR_C_ENUMS_LARGER_THAN_INT,
5453 Warn,
5454"repr(C) enums with discriminant values that do not fit into a C int",
5455 @future_incompatible = FutureIncompatibleInfo {
5456 reason: fcw!(FutureReleaseError #124403),
5457 report_in_deps: false,
5458 };
5459}54605461#[doc =
r" The `varargs_without_pattern` lint detects when `...` is used as an argument to a"]
#[doc = r" non-foreign function without any pattern being specified."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc =
r" // Using `...` in non-foreign function definitions is unstable, however stability is"]
#[doc =
r" // currently only checked after attributes are expanded, so using `#[cfg(false)]` here will"]
#[doc = r" // allow this to compile on stable Rust."]
#[doc = r" #[cfg(false)]"]
#[doc = r" fn foo(...) {"]
#[doc = r""]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Patterns are currently required for all non-`...` arguments in function definitions (with"]
#[doc =
r" some exceptions in the 2015 edition). Requiring `...` arguments to have patterns in"]
#[doc =
r" non-foreign function definitions makes the language more consistent, and removes a source of"]
#[doc =
r" confusion for the unstable C variadic feature. `...` arguments without a pattern are already"]
#[doc =
r" stable and widely used in foreign function definitions; this lint only affects non-foreign"]
#[doc = r" function definitions."]
#[doc = r""]
#[doc =
r" Using `...` (C varargs) in a non-foreign function definition is currently unstable. However,"]
#[doc =
r" stability checking for the `...` syntax in non-foreign function definitions is currently"]
#[doc =
r" implemented after attributes have been expanded, meaning that if the attribute removes the"]
#[doc =
r" use of the unstable syntax (e.g. `#[cfg(false)]`, or a procedural macro), the code will"]
#[doc =
r" compile on stable Rust; this is the only situation where this lint affects code that"]
#[doc = r" compiles on stable Rust."]
#[doc = r""]
#[doc =
r" This is a [future-incompatible] lint to transition this to a hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static VARARGS_WITHOUT_PATTERN: &crate::Lint =
&crate::Lint {
name: "VARARGS_WITHOUT_PATTERN",
default_level: crate::Deny,
desc: "detects usage of `...` arguments without a pattern in non-foreign items",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 145544,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5462/// The `varargs_without_pattern` lint detects when `...` is used as an argument to a
5463 /// non-foreign function without any pattern being specified.
5464 ///
5465 /// ### Example
5466 ///
5467 /// ```rust,compile_fail
5468 /// // Using `...` in non-foreign function definitions is unstable, however stability is
5469 /// // currently only checked after attributes are expanded, so using `#[cfg(false)]` here will
5470 /// // allow this to compile on stable Rust.
5471 /// #[cfg(false)]
5472 /// fn foo(...) {
5473 ///
5474 /// }
5475 /// ```
5476 ///
5477 /// {{produces}}
5478 ///
5479 /// ### Explanation
5480 ///
5481 /// Patterns are currently required for all non-`...` arguments in function definitions (with
5482 /// some exceptions in the 2015 edition). Requiring `...` arguments to have patterns in
5483 /// non-foreign function definitions makes the language more consistent, and removes a source of
5484 /// confusion for the unstable C variadic feature. `...` arguments without a pattern are already
5485 /// stable and widely used in foreign function definitions; this lint only affects non-foreign
5486 /// function definitions.
5487 ///
5488 /// Using `...` (C varargs) in a non-foreign function definition is currently unstable. However,
5489 /// stability checking for the `...` syntax in non-foreign function definitions is currently
5490 /// implemented after attributes have been expanded, meaning that if the attribute removes the
5491 /// use of the unstable syntax (e.g. `#[cfg(false)]`, or a procedural macro), the code will
5492 /// compile on stable Rust; this is the only situation where this lint affects code that
5493 /// compiles on stable Rust.
5494 ///
5495 /// This is a [future-incompatible] lint to transition this to a hard error in the future.
5496 ///
5497 /// [future-incompatible]: ../index.md#future-incompatible-lints
5498pub VARARGS_WITHOUT_PATTERN,
5499 Deny,
5500"detects usage of `...` arguments without a pattern in non-foreign items",
5501 @future_incompatible = FutureIncompatibleInfo {
5502 reason: fcw!(FutureReleaseError #145544),
5503 report_in_deps: true,
5504 };
5505}55065507#[doc =
r" The `deprecated_llvm_intrinsic` lint detects usage of deprecated LLVM intrinsics."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,ignore (requires x86)"]
#[doc = r#" #![cfg(any(target_arch = "x86", target_arch = "x86_64"))]"#]
#[doc = r" #![feature(link_llvm_intrinsics, abi_unadjusted)]"]
#[doc = r" #![deny(deprecated_llvm_intrinsic)]"]
#[doc = r""]
#[doc = r#" unsafe extern "unadjusted" {"#]
#[doc = r#" #[link_name = "llvm.x86.addcarryx.u32"]"#]
#[doc = r" fn foo(a: u8, b: u32, c: u32, d: &mut u32) -> u8;"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" #[inline(never)]"]
#[doc = r#" #[target_feature(enable = "adx")]"#]
#[doc = r" pub fn bar(a: u8, b: u32, c: u32, d: &mut u32) -> u8 {"]
#[doc = r" unsafe { foo(a, b, c, d) }"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produce:"]
#[doc = r""]
#[doc = r" ```text"]
#[doc = r" error: Using deprecated intrinsic `llvm.x86.addcarryx.u32`"]
#[doc = r" --> example.rs:7:5"]
#[doc = r" |"]
#[doc = r" 7 | fn foo(a: u8, b: u32, c: u32, d: &mut u32) -> u8;"]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" LLVM periodically updates its list of intrinsics. Deprecated intrinsics are unlikely"]
#[doc =
r" to be removed, but they may optimize less well than their new versions, so it's"]
#[doc =
r" best to use the new version. Also, some deprecated intrinsics might have buggy"]
#[doc = r" behavior."]
#[doc = r""]
#[doc =
r" This `link_llvm_intrinsics` lint is intended to be used internally only, and requires the"]
#[doc =
r" `#![feature(link_llvm_intrinsics)]` internal feature gate. For more information, see [its chapter in"]
#[doc =
r" the Unstable Book](https://doc.rust-lang.org/unstable-book/language-features/link-llvm-intrinsics.html)"]
#[doc =
r" and [its tracking issue](https://github.com/rust-lang/rust/issues/29602)."]
pub static DEPRECATED_LLVM_INTRINSIC: &crate::Lint =
&crate::Lint {
name: "DEPRECATED_LLVM_INTRINSIC",
default_level: crate::Allow,
desc: "detects uses of deprecated LLVM intrinsics",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::link_llvm_intrinsics),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5508/// The `deprecated_llvm_intrinsic` lint detects usage of deprecated LLVM intrinsics.
5509 ///
5510 /// ### Example
5511 ///
5512 /// ```rust,ignore (requires x86)
5513 /// #![cfg(any(target_arch = "x86", target_arch = "x86_64"))]
5514 /// #![feature(link_llvm_intrinsics, abi_unadjusted)]
5515 /// #![deny(deprecated_llvm_intrinsic)]
5516 ///
5517 /// unsafe extern "unadjusted" {
5518 /// #[link_name = "llvm.x86.addcarryx.u32"]
5519 /// fn foo(a: u8, b: u32, c: u32, d: &mut u32) -> u8;
5520 /// }
5521 ///
5522 /// #[inline(never)]
5523 /// #[target_feature(enable = "adx")]
5524 /// pub fn bar(a: u8, b: u32, c: u32, d: &mut u32) -> u8 {
5525 /// unsafe { foo(a, b, c, d) }
5526 /// }
5527 /// ```
5528 ///
5529 /// This will produce:
5530 ///
5531 /// ```text
5532 /// error: Using deprecated intrinsic `llvm.x86.addcarryx.u32`
5533 /// --> example.rs:7:5
5534 /// |
5535 /// 7 | fn foo(a: u8, b: u32, c: u32, d: &mut u32) -> u8;
5536 /// | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5537 /// |
5538 /// ```
5539 ///
5540 /// ### Explanation
5541 ///
5542 /// LLVM periodically updates its list of intrinsics. Deprecated intrinsics are unlikely
5543 /// to be removed, but they may optimize less well than their new versions, so it's
5544 /// best to use the new version. Also, some deprecated intrinsics might have buggy
5545 /// behavior.
5546 ///
5547 /// This `link_llvm_intrinsics` lint is intended to be used internally only, and requires the
5548 /// `#![feature(link_llvm_intrinsics)]` internal feature gate. For more information, see [its chapter in
5549 /// the Unstable Book](https://doc.rust-lang.org/unstable-book/language-features/link-llvm-intrinsics.html)
5550 /// and [its tracking issue](https://github.com/rust-lang/rust/issues/29602).
5551pub DEPRECATED_LLVM_INTRINSIC,
5552 Allow,
5553"detects uses of deprecated LLVM intrinsics",
5554 @feature_gate = link_llvm_intrinsics;
5555}55565557#[doc =
r" The `float_literal_f32_fallback` lint detects situations where the type of an unsuffixed"]
#[doc =
r" float literal falls back to `f32` instead of `f64` to avoid a compilation error. This occurs"]
#[doc =
r" when there is a trait bound `f32: From<T>` (or equivalent, such as `T: Into<f32>`) and the"]
#[doc = r" literal is inferred to have the same type as `T`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust"]
#[doc = r" fn foo(x: impl Into<f32>) -> f32 {"]
#[doc = r" x.into()"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" fn main() {"]
#[doc = r" dbg!(foo(2.5));"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Rust allows traits that are only implemented for a single floating point type to guide type"]
#[doc =
r" inference for floating point literals. This used to apply in the case of `f32: From<T>`"]
#[doc =
r" (where `T` was inferred to be the same type as a floating point literal), as the only"]
#[doc =
r" floating point type impl was `f32: From<f32>`. However, as Rust is in the process of adding"]
#[doc =
r" support for `f16`, there are now two implementations for floating point types:"]
#[doc =
r" `f32: From<f16>` and `f32: From<f32>`. This means that the trait bound `f32: From<T>` can no"]
#[doc =
r" longer guide inference for the type of the floating point literal. The default fallback for"]
#[doc =
r" unsuffixed floating point literals is `f64`. As `f32` does not implement `From<f64>`,"]
#[doc =
r" falling back to `f64` would cause a compilation error; therefore, the float type fallback"]
#[doc =
r" has been tempoarily adjusted to fallback to `f32` in this scenario."]
#[doc = r""]
#[doc =
r" The lint will automatically provide a machine-applicable suggestion to add a `_f32` suffix"]
#[doc = r" to the literal, which will fix the problem."]
#[doc = r""]
#[doc =
r" This is a [future-incompatible] lint to transition this to a hard error in the future. See"]
#[doc = r" [issue #154024] for more details."]
#[doc = r""]
#[doc = r" [issue #154024]: https://github.com/rust-lang/rust/issues/154024"]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static FLOAT_LITERAL_F32_FALLBACK: &crate::Lint =
&crate::Lint {
name: "FLOAT_LITERAL_F32_FALLBACK",
default_level: crate::Warn,
desc: "detects unsuffixed floating point literals whose type fallback to `f32`",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 154024,
}),
report_in_deps: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5558/// The `float_literal_f32_fallback` lint detects situations where the type of an unsuffixed
5559 /// float literal falls back to `f32` instead of `f64` to avoid a compilation error. This occurs
5560 /// when there is a trait bound `f32: From<T>` (or equivalent, such as `T: Into<f32>`) and the
5561 /// literal is inferred to have the same type as `T`.
5562 ///
5563 /// ### Example
5564 ///
5565 /// ```rust
5566 /// fn foo(x: impl Into<f32>) -> f32 {
5567 /// x.into()
5568 /// }
5569 ///
5570 /// fn main() {
5571 /// dbg!(foo(2.5));
5572 /// }
5573 /// ```
5574 ///
5575 /// {{produces}}
5576 ///
5577 /// ### Explanation
5578 ///
5579 /// Rust allows traits that are only implemented for a single floating point type to guide type
5580 /// inference for floating point literals. This used to apply in the case of `f32: From<T>`
5581 /// (where `T` was inferred to be the same type as a floating point literal), as the only
5582 /// floating point type impl was `f32: From<f32>`. However, as Rust is in the process of adding
5583 /// support for `f16`, there are now two implementations for floating point types:
5584 /// `f32: From<f16>` and `f32: From<f32>`. This means that the trait bound `f32: From<T>` can no
5585 /// longer guide inference for the type of the floating point literal. The default fallback for
5586 /// unsuffixed floating point literals is `f64`. As `f32` does not implement `From<f64>`,
5587 /// falling back to `f64` would cause a compilation error; therefore, the float type fallback
5588 /// has been tempoarily adjusted to fallback to `f32` in this scenario.
5589 ///
5590 /// The lint will automatically provide a machine-applicable suggestion to add a `_f32` suffix
5591 /// to the literal, which will fix the problem.
5592 ///
5593 /// This is a [future-incompatible] lint to transition this to a hard error in the future. See
5594 /// [issue #154024] for more details.
5595 ///
5596 /// [issue #154024]: https://github.com/rust-lang/rust/issues/154024
5597 /// [future-incompatible]: ../index.md#future-incompatible-lints
5598pub FLOAT_LITERAL_F32_FALLBACK,
5599 Warn,
5600"detects unsuffixed floating point literals whose type fallback to `f32`",
5601 @future_incompatible = FutureIncompatibleInfo {
5602 reason: fcw!(FutureReleaseError #154024),
5603 report_in_deps: false,
5604 };
5605}56065607#[doc = r" The `unsafe_code` lint catches usage of `unsafe` code and other"]
#[doc = r" potentially unsound constructs like `no_mangle`, `export_name`,"]
#[doc = r" and `link_section`."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![deny(unsafe_code)]"]
#[doc = r" fn main() {"]
#[doc = r" unsafe {"]
#[doc = r""]
#[doc = r" }"]
#[doc = r" }"]
#[doc = r""]
#[doc = r" #[no_mangle]"]
#[doc = r" fn func_0() { }"]
#[doc = r""]
#[doc = r#" #[export_name = "exported_symbol_name"]"#]
#[doc = r" pub fn name_in_rust() { }"]
#[doc = r""]
#[doc = r" #[no_mangle]"]
#[doc = r#" #[link_section = ".example_section"]"#]
#[doc = r" pub static VAR1: u32 = 1;"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" This lint is intended to restrict the usage of `unsafe` blocks and other"]
#[doc =
r" constructs (including, but not limited to `no_mangle`, `link_section`"]
#[doc =
r" and `export_name` attributes) wrong usage of which causes undefined"]
#[doc = r" behavior."]
pub static UNSAFE_CODE: &crate::Lint =
&crate::Lint {
name: "UNSAFE_CODE",
default_level: crate::Allow,
desc: "usage of `unsafe` code and other potentially unsound constructs",
is_externally_loaded: false,
eval_always: true,
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5608/// The `unsafe_code` lint catches usage of `unsafe` code and other
5609 /// potentially unsound constructs like `no_mangle`, `export_name`,
5610 /// and `link_section`.
5611 ///
5612 /// ### Example
5613 ///
5614 /// ```rust,compile_fail
5615 /// #![deny(unsafe_code)]
5616 /// fn main() {
5617 /// unsafe {
5618 ///
5619 /// }
5620 /// }
5621 ///
5622 /// #[no_mangle]
5623 /// fn func_0() { }
5624 ///
5625 /// #[export_name = "exported_symbol_name"]
5626 /// pub fn name_in_rust() { }
5627 ///
5628 /// #[no_mangle]
5629 /// #[link_section = ".example_section"]
5630 /// pub static VAR1: u32 = 1;
5631 /// ```
5632 ///
5633 /// {{produces}}
5634 ///
5635 /// ### Explanation
5636 ///
5637 /// This lint is intended to restrict the usage of `unsafe` blocks and other
5638 /// constructs (including, but not limited to `no_mangle`, `link_section`
5639 /// and `export_name` attributes) wrong usage of which causes undefined
5640 /// behavior.
5641pub UNSAFE_CODE,
5642 Allow,
5643"usage of `unsafe` code and other potentially unsound constructs",
5644 @eval_always = true
5645}56465647#[doc =
r" The `method_call_on_diverging_infer_var` lint detects situations in which a method is called on a value resulting from a never-to-any coercion,"]
#[doc = r" without necessary information to infer a type for it."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = "```rust,no_run"]
#[doc = r" fn main() {"]
#[doc = r" let x = panic!();"]
#[doc = r" x.clone();"]
#[doc = r" }"]
#[doc = "```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" Rust does not generally allow calling methods on values which do not have a known type,"]
#[doc = r" such a result of a never-to-any coercion with no type specified."]
#[doc = r""]
#[doc =
r" To aid with transition of code calling methods on `Infallible` after changing `Infallible` to be an alias for `!`, rustc *temporarily* allows such calls."]
#[doc = r" This will (once again) become an error in the future."]
#[doc = r""]
#[doc =
r" Thanks to never-to-any coercion you can replace method calls on `!` with the use of the `!` variable, or an `as` cast to an explicit type:"]
#[doc = r""]
#[doc = r" ```diff"]
#[doc = r" - x.clone()"]
#[doc = r" + x"]
#[doc = r" ```"]
#[doc = r" ```diff"]
#[doc = r" - result.map(|x| x.convert_error())?;"]
#[doc = r" + result.map(|x| x as ErrorType)?;"]
#[doc = r" ```"]
pub static METHOD_CALL_ON_DIVERGING_INFER_VAR: &crate::Lint =
&crate::Lint {
name: "METHOD_CALL_ON_DIVERGING_INFER_VAR",
default_level: crate::Warn,
desc: "detects method calls on a result of never-to-any coercion",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 156047,
}),
report_in_deps: true,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5648/// The `method_call_on_diverging_infer_var` lint detects situations in which a method is called on a value resulting from a never-to-any coercion,
5649 /// without necessary information to infer a type for it.
5650 ///
5651 /// ### Example
5652 ///
5653#[cfg_attr(bootstrap, doc = "```rust,compile_fail")]
5654 #[cfg_attr(not(bootstrap), doc = "```rust,no_run")]
5655/// fn main() {
5656 /// let x = panic!();
5657 /// x.clone();
5658 /// }
5659#[doc = "```"]
5660///
5661 /// {{produces}}
5662 ///
5663 /// ### Explanation
5664 ///
5665 /// Rust does not generally allow calling methods on values which do not have a known type,
5666 /// such a result of a never-to-any coercion with no type specified.
5667 ///
5668 /// To aid with transition of code calling methods on `Infallible` after changing `Infallible` to be an alias for `!`, rustc *temporarily* allows such calls.
5669 /// This will (once again) become an error in the future.
5670 ///
5671 /// Thanks to never-to-any coercion you can replace method calls on `!` with the use of the `!` variable, or an `as` cast to an explicit type:
5672 ///
5673 /// ```diff
5674 /// - x.clone()
5675 /// + x
5676 /// ```
5677 /// ```diff
5678 /// - result.map(|x| x.convert_error())?;
5679 /// + result.map(|x| x as ErrorType)?;
5680 /// ```
5681pub METHOD_CALL_ON_DIVERGING_INFER_VAR,
5682 Warn,
5683"detects method calls on a result of never-to-any coercion",
5684 @future_incompatible = FutureIncompatibleInfo {
5685 reason: fcw!(FutureReleaseError #156047),
5686 report_in_deps: true,
5687 };
5688}56895690#[doc =
r" The `recursion_depth_exceeding_limit` lint detects cases where the compiler does not"]
#[doc = r" correctly track the recursion depth in obligation evaluation."]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r" ```text"]
#[doc = r" rustc -Znext-solver example.rs"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ```rust,ignore (requires next solver)"]
#[doc = r#" #![recursion_limit = "8"]"#]
#[doc = r" struct Foo<T> {"]
#[doc = r" t: T,"]
#[doc = r" opt_t: Option<T>,"]
#[doc = r" }"]
#[doc = r" fn require_sync<T: Sync>() {}"]
#[doc = r" fn main() {"]
#[doc = r" require_sync::<Foo<Foo<Foo<Foo<Foo<Foo<()>>>>>>>();"]
#[doc = r" }"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" This will produces:"]
#[doc = r" ```text"]
#[doc =
r" error[E0275]: overflow evaluating the requirement `Foo<Foo<Foo<Foo<Foo<Foo<()>>>>>>: Sync`"]
#[doc = r" --> example.rs:12:20"]
#[doc = r" |"]
#[doc = r" | require_sync::<Foo<Foo<Foo<Foo<Foo<Foo<()>>>>>>>();"]
#[doc = r" | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"]
#[doc = r" |"]
#[doc =
r#" = help: consider increasing the recursion limit by adding a `#![recursion_limit = "16"]` attribute to your crate"#]
#[doc = r" note: required by a bound in `require_sync`"]
#[doc = r" --> example.rs:9:20"]
#[doc = r" |"]
#[doc = r" | fn require_sync<T: Sync>() {}"]
#[doc =
r" | ^^^^ required by this bound in `require_sync`"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc =
r" The compiler uses a recursion limit in obligation evaluation to avoid hangs."]
#[doc = r""]
#[doc =
r" However, the old trait solver sometimes ignores the recursion depth, whereas"]
#[doc =
r" the new solver correctly tracks it. This reveals cases where overflow should"]
#[doc = r" have occurred previously."]
#[doc = r""]
#[doc =
r" This is a [future-incompatible] lint to transition this to a hard error in the future."]
#[doc = r""]
#[doc = r" [future-incompatible]: ../index.md#future-incompatible-lints"]
pub static RECURSION_DEPTH_EXCEEDING_LIMIT: &crate::Lint =
&crate::Lint {
name: "RECURSION_DEPTH_EXCEEDING_LIMIT",
default_level: crate::Warn,
desc: "detects trait solving overflow that only happens with the next solver",
is_externally_loaded: false,
future_incompatible: Some(crate::FutureIncompatibleInfo {
reason: crate::FutureIncompatibilityReason::FutureReleaseError(crate::ReleaseFcw {
issue_number: 159228,
}),
report_in_deps: false,
..crate::FutureIncompatibleInfo::default_fields_for_macro()
}),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5691/// The `recursion_depth_exceeding_limit` lint detects cases where the compiler does not
5692 /// correctly track the recursion depth in obligation evaluation.
5693 ///
5694 /// ### Example
5695 /// ```text
5696 /// rustc -Znext-solver example.rs
5697 /// ```
5698 ///
5699 /// ```rust,ignore (requires next solver)
5700 /// #![recursion_limit = "8"]
5701 /// struct Foo<T> {
5702 /// t: T,
5703 /// opt_t: Option<T>,
5704 /// }
5705 /// fn require_sync<T: Sync>() {}
5706 /// fn main() {
5707 /// require_sync::<Foo<Foo<Foo<Foo<Foo<Foo<()>>>>>>>();
5708 /// }
5709 /// ```
5710 ///
5711 /// This will produces:
5712 /// ```text
5713 /// error[E0275]: overflow evaluating the requirement `Foo<Foo<Foo<Foo<Foo<Foo<()>>>>>>: Sync`
5714 /// --> example.rs:12:20
5715 /// |
5716 /// | require_sync::<Foo<Foo<Foo<Foo<Foo<Foo<()>>>>>>>();
5717 /// | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5718 /// |
5719 /// = help: consider increasing the recursion limit by adding a `#![recursion_limit = "16"]` attribute to your crate
5720 /// note: required by a bound in `require_sync`
5721 /// --> example.rs:9:20
5722 /// |
5723 /// | fn require_sync<T: Sync>() {}
5724 /// | ^^^^ required by this bound in `require_sync`
5725 /// ```
5726 ///
5727 /// ### Explanation
5728 ///
5729 /// The compiler uses a recursion limit in obligation evaluation to avoid hangs.
5730 ///
5731 /// However, the old trait solver sometimes ignores the recursion depth, whereas
5732 /// the new solver correctly tracks it. This reveals cases where overflow should
5733 /// have occurred previously.
5734 ///
5735 /// This is a [future-incompatible] lint to transition this to a hard error in the future.
5736 ///
5737 /// [future-incompatible]: ../index.md#future-incompatible-lints
5738pub RECURSION_DEPTH_EXCEEDING_LIMIT,
5739 Warn,
5740"detects trait solving overflow that only happens with the next solver",
5741 @future_incompatible = FutureIncompatibleInfo {
5742 reason: fcw!(FutureReleaseError #159228),
5743 report_in_deps: false,
5744 };
5745}57465747#[doc =
r" The `duplicate_tools` lint detects duplicate tools found in crate-level"]
#[doc =
r" [`register_tool` attributes] (including `register_attribute_tool` or `register_lint_tool`)."]
#[doc = r""]
#[doc =
r" [`register_tool` attributes]: https://doc.rust-lang.org/nightly/unstable-book/language-features/register-tool.html"]
#[doc = r""]
#[doc = r" ### Example"]
#[doc = r""]
#[doc = r" ```rust,compile_fail"]
#[doc = r" #![feature(register_tool)]"]
#[doc = r" #![register_tool(foo)]"]
#[doc = r" #![register_tool(foo)]"]
#[doc = r" ```"]
#[doc = r""]
#[doc = r" {{produces}}"]
#[doc = r""]
#[doc = r" ### Explanation"]
#[doc = r""]
#[doc = r" Enabling a tool more than once is a no-op."]
#[doc =
r" To avoid this warning, remove the second `register_tool()` attribute."]
pub static DUPLICATE_TOOLS: &crate::Lint =
&crate::Lint {
name: "DUPLICATE_TOOLS",
default_level: crate::Deny,
desc: "duplicate tools found in crate-level `#[register_tools]` directives",
is_externally_loaded: false,
feature_gate: Some(rustc_span::sym::register_tool),
..crate::Lint::default_fields_for_macro()
};declare_lint! {
5748/// The `duplicate_tools` lint detects duplicate tools found in crate-level
5749 /// [`register_tool` attributes] (including `register_attribute_tool` or `register_lint_tool`).
5750 ///
5751 /// [`register_tool` attributes]: https://doc.rust-lang.org/nightly/unstable-book/language-features/register-tool.html
5752 ///
5753 /// ### Example
5754 ///
5755 /// ```rust,compile_fail
5756 /// #![feature(register_tool)]
5757 /// #![register_tool(foo)]
5758 /// #![register_tool(foo)]
5759 /// ```
5760 ///
5761 /// {{produces}}
5762 ///
5763 /// ### Explanation
5764 ///
5765 /// Enabling a tool more than once is a no-op.
5766 /// To avoid this warning, remove the second `register_tool()` attribute.
5767pub DUPLICATE_TOOLS,
5768 Deny,
5769"duplicate tools found in crate-level `#[register_tools]` directives",
5770 @feature_gate = register_tool;
5771}