We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
enum_glob_use
1 parent 05c77b9 commit c751029Copy full SHA for c751029
clippy_lints/src/utils/ast_utils/ident_iter.rs
@@ -1,43 +1,6 @@
1
+#![allow(clippy::enum_glob_use)]
2
use core::iter::{self, FusedIterator};
-use rustc_ast::{
3
- AssocItem,
4
- AssocItemKind,
5
- AttrKind,
6
- Attribute,
7
- Block,
8
- Expr,
9
- ExprKind,
10
- ForeignItem,
11
- ForeignItemKind,
12
- FnDecl,
13
- FnRetTy,
14
- Generics,
15
- GenericBound,
16
- GenericBounds,
17
- GenericParam,
18
- GenericParamKind,
19
- Item,
20
- ItemKind,
21
- Param,
22
- Pat,
23
- PatKind,
24
- Path,
25
- PolyTraitRef,
26
- MacCall,
27
- MacCallStmt,
28
- MutTy,
29
- Stmt,
30
- StmtKind,
31
- Local,
32
- Ty,
33
- TyKind,
34
- UseTree,
35
- UseTreeKind,
36
- VariantData,
37
- Visibility,
38
- VisibilityKind,
39
- WherePredicate,
40
-};
+use rustc_ast::*;
41
use rustc_ast::ptr::P;
42
use rustc_span::symbol::Ident;
43
0 commit comments