]> git.lizzy.rs Git - rust.git/blob - src/librustc/lint/builtin.rs
Add warning cycle #42238.
[rust.git] / src / librustc / lint / builtin.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Some lints that are built in to the compiler.
12 //!
13 //! These are the built-in lints that are emitted direct in the main
14 //! compiler code, rather than using their own custom pass. Those
15 //! lints are all available in `rustc_lint::builtin`.
16
17 use lint::{LintPass, LateLintPass, LintArray};
18
19 declare_lint! {
20     pub CONST_ERR,
21     Warn,
22     "constant evaluation detected erroneous expression"
23 }
24
25 declare_lint! {
26     pub UNUSED_IMPORTS,
27     Warn,
28     "imports that are never used"
29 }
30
31 declare_lint! {
32     pub UNUSED_EXTERN_CRATES,
33     Allow,
34     "extern crates that are never used"
35 }
36
37 declare_lint! {
38     pub UNUSED_QUALIFICATIONS,
39     Allow,
40     "detects unnecessarily qualified names"
41 }
42
43 declare_lint! {
44     pub UNKNOWN_LINTS,
45     Warn,
46     "unrecognized lint attribute"
47 }
48
49 declare_lint! {
50     pub UNUSED_VARIABLES,
51     Warn,
52     "detect variables which are not used in any way"
53 }
54
55 declare_lint! {
56     pub UNUSED_ASSIGNMENTS,
57     Warn,
58     "detect assignments that will never be read"
59 }
60
61 declare_lint! {
62     pub DEAD_CODE,
63     Warn,
64     "detect unused, unexported items"
65 }
66
67 declare_lint! {
68     pub UNREACHABLE_CODE,
69     Warn,
70     "detects unreachable code paths"
71 }
72
73 declare_lint! {
74     pub UNREACHABLE_PATTERNS,
75     Warn,
76     "detects unreachable patterns"
77 }
78
79 declare_lint! {
80     pub WARNINGS,
81     Warn,
82     "mass-change the level for lints which produce warnings"
83 }
84
85 declare_lint! {
86     pub UNUSED_FEATURES,
87     Warn,
88     "unused or unknown features found in crate-level #[feature] directives"
89 }
90
91 declare_lint! {
92     pub STABLE_FEATURES,
93     Warn,
94     "stable features found in #[feature] directive"
95 }
96
97 declare_lint! {
98     pub UNKNOWN_CRATE_TYPES,
99     Deny,
100     "unknown crate type found in #[crate_type] directive"
101 }
102
103 declare_lint! {
104     pub FAT_PTR_TRANSMUTES,
105     Allow,
106     "detects transmutes of fat pointers"
107 }
108
109 declare_lint! {
110     pub TRIVIAL_CASTS,
111     Allow,
112     "detects trivial casts which could be removed"
113 }
114
115 declare_lint! {
116     pub TRIVIAL_NUMERIC_CASTS,
117     Allow,
118     "detects trivial casts of numeric types which could be removed"
119 }
120
121 declare_lint! {
122     pub PRIVATE_IN_PUBLIC,
123     Warn,
124     "detect private items in public interfaces not caught by the old implementation"
125 }
126
127 declare_lint! {
128     pub INACCESSIBLE_EXTERN_CRATE,
129     Deny,
130     "use of inaccessible extern crate erroneously allowed"
131 }
132
133 declare_lint! {
134     pub INVALID_TYPE_PARAM_DEFAULT,
135     Deny,
136     "type parameter default erroneously allowed in invalid location"
137 }
138
139 declare_lint! {
140     pub ILLEGAL_FLOATING_POINT_CONSTANT_PATTERN,
141     Deny,
142     "floating-point constants cannot be used in patterns"
143 }
144
145 declare_lint! {
146     pub ILLEGAL_STRUCT_OR_ENUM_CONSTANT_PATTERN,
147     Deny,
148     "constants of struct or enum type can only be used in a pattern if \
149      the struct or enum has `#[derive(PartialEq, Eq)]`"
150 }
151
152 declare_lint! {
153     pub RAW_POINTER_DERIVE,
154     Warn,
155     "uses of #[derive] with raw pointers are rarely correct"
156 }
157
158 declare_lint! {
159     pub HR_LIFETIME_IN_ASSOC_TYPE,
160     Deny,
161     "binding for associated type references higher-ranked lifetime \
162      that does not appear in the trait input types"
163 }
164
165 declare_lint! {
166     pub OVERLAPPING_INHERENT_IMPLS,
167     Deny,
168     "two overlapping inherent impls define an item with the same name were erroneously allowed"
169 }
170
171 declare_lint! {
172     pub RENAMED_AND_REMOVED_LINTS,
173     Warn,
174     "lints that have been renamed or removed"
175 }
176
177 declare_lint! {
178     pub SUPER_OR_SELF_IN_GLOBAL_PATH,
179     Deny,
180     "detects super or self keywords at the beginning of global path"
181 }
182
183 declare_lint! {
184     pub LIFETIME_UNDERSCORE,
185     Deny,
186     "lifetimes or labels named `'_` were erroneously allowed"
187 }
188
189 declare_lint! {
190     pub RESOLVE_TRAIT_ON_DEFAULTED_UNIT,
191     Warn,
192     "attempt to resolve a trait on an expression whose type cannot be inferred but which \
193      currently defaults to ()"
194 }
195
196 declare_lint! {
197     pub SAFE_EXTERN_STATICS,
198     Warn,
199     "safe access to extern statics was erroneously allowed"
200 }
201
202 declare_lint! {
203     pub PATTERNS_IN_FNS_WITHOUT_BODY,
204     Warn,
205     "patterns in functions without body were erroneously allowed"
206 }
207
208 declare_lint! {
209     pub EXTRA_REQUIREMENT_IN_IMPL,
210     Deny,
211     "detects extra requirements in impls that were erroneously allowed"
212 }
213
214 declare_lint! {
215     pub LEGACY_DIRECTORY_OWNERSHIP,
216     Warn,
217     "non-inline, non-`#[path]` modules (e.g. `mod foo;`) were erroneously allowed in some files \
218      not named `mod.rs`"
219 }
220
221 declare_lint! {
222     pub LEGACY_IMPORTS,
223     Warn,
224     "detects names that resolve to ambiguous glob imports with RFC 1560"
225 }
226
227 declare_lint! {
228     pub LEGACY_CONSTRUCTOR_VISIBILITY,
229     Deny,
230     "detects use of struct constructors that would be invisible with new visibility rules"
231 }
232
233 declare_lint! {
234     pub MISSING_FRAGMENT_SPECIFIER,
235     Warn,
236     "detects missing fragment specifiers in unused `macro_rules!` patterns"
237 }
238
239 declare_lint! {
240     pub PARENTHESIZED_PARAMS_IN_TYPES_AND_MODULES,
241     Warn,
242     "detects parenthesized generic parameters in type and module names"
243 }
244
245 declare_lint! {
246     pub DEPRECATED,
247     Warn,
248     "detects use of deprecated items"
249 }
250
251 /// Does nothing as a lint pass, but registers some `Lint`s
252 /// which are used by other parts of the compiler.
253 #[derive(Copy, Clone)]
254 pub struct HardwiredLints;
255
256 impl LintPass for HardwiredLints {
257     fn get_lints(&self) -> LintArray {
258         lint_array!(
259             UNUSED_IMPORTS,
260             UNUSED_EXTERN_CRATES,
261             UNUSED_QUALIFICATIONS,
262             UNKNOWN_LINTS,
263             UNUSED_VARIABLES,
264             UNUSED_ASSIGNMENTS,
265             DEAD_CODE,
266             UNREACHABLE_CODE,
267             UNREACHABLE_PATTERNS,
268             WARNINGS,
269             UNUSED_FEATURES,
270             STABLE_FEATURES,
271             UNKNOWN_CRATE_TYPES,
272             FAT_PTR_TRANSMUTES,
273             TRIVIAL_CASTS,
274             TRIVIAL_NUMERIC_CASTS,
275             PRIVATE_IN_PUBLIC,
276             INACCESSIBLE_EXTERN_CRATE,
277             INVALID_TYPE_PARAM_DEFAULT,
278             ILLEGAL_FLOATING_POINT_CONSTANT_PATTERN,
279             ILLEGAL_STRUCT_OR_ENUM_CONSTANT_PATTERN,
280             CONST_ERR,
281             RAW_POINTER_DERIVE,
282             OVERLAPPING_INHERENT_IMPLS,
283             RENAMED_AND_REMOVED_LINTS,
284             SUPER_OR_SELF_IN_GLOBAL_PATH,
285             HR_LIFETIME_IN_ASSOC_TYPE,
286             LIFETIME_UNDERSCORE,
287             RESOLVE_TRAIT_ON_DEFAULTED_UNIT,
288             SAFE_EXTERN_STATICS,
289             PATTERNS_IN_FNS_WITHOUT_BODY,
290             EXTRA_REQUIREMENT_IN_IMPL,
291             LEGACY_DIRECTORY_OWNERSHIP,
292             LEGACY_IMPORTS,
293             LEGACY_CONSTRUCTOR_VISIBILITY,
294             MISSING_FRAGMENT_SPECIFIER,
295             PARENTHESIZED_PARAMS_IN_TYPES_AND_MODULES,
296             DEPRECATED
297         )
298     }
299 }
300
301 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for HardwiredLints {}