1error: usage of wildcard import
2  --> $DIR/wildcard_imports.rs:17:5
3   |
4LL | use crate::fn_mod::*;
5   |     ^^^^^^^^^^^^^^^^ help: try: `crate::fn_mod::foo`
6   |
7   = note: `-D clippy::wildcard-imports` implied by `-D warnings`
8
9error: usage of wildcard import
10  --> $DIR/wildcard_imports.rs:18:5
11   |
12LL | use crate::mod_mod::*;
13   |     ^^^^^^^^^^^^^^^^^ help: try: `crate::mod_mod::inner_mod`
14
15error: usage of wildcard import
16  --> $DIR/wildcard_imports.rs:19:5
17   |
18LL | use crate::multi_fn_mod::*;
19   |     ^^^^^^^^^^^^^^^^^^^^^^ help: try: `crate::multi_fn_mod::{multi_bar, multi_foo, multi_inner_mod}`
20
21error: usage of wildcard import
22  --> $DIR/wildcard_imports.rs:21:5
23   |
24LL | use crate::struct_mod::*;
25   |     ^^^^^^^^^^^^^^^^^^^^ help: try: `crate::struct_mod::{A, inner_struct_mod}`
26
27error: usage of wildcard import
28  --> $DIR/wildcard_imports.rs:25:5
29   |
30LL | use wildcard_imports_helper::inner::inner_for_self_import::*;
31   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::inner::inner_for_self_import::inner_extern_bar`
32
33error: usage of wildcard import
34  --> $DIR/wildcard_imports.rs:26:5
35   |
36LL | use wildcard_imports_helper::*;
37   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}`
38
39error: usage of wildcard import
40  --> $DIR/wildcard_imports.rs:97:13
41   |
42LL |         use crate::fn_mod::*;
43   |             ^^^^^^^^^^^^^^^^ help: try: `crate::fn_mod::foo`
44
45error: usage of wildcard import
46  --> $DIR/wildcard_imports.rs:103:75
47   |
48LL |         use wildcard_imports_helper::inner::inner_for_self_import::{self, *};
49   |                                                                           ^ help: try: `inner_extern_foo`
50
51error: usage of wildcard import
52  --> $DIR/wildcard_imports.rs:104:13
53   |
54LL |         use wildcard_imports_helper::*;
55   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}`
56
57error: usage of wildcard import
58  --> $DIR/wildcard_imports.rs:115:20
59   |
60LL |         use self::{inner::*, inner2::*};
61   |                    ^^^^^^^^ help: try: `inner::inner_foo`
62
63error: usage of wildcard import
64  --> $DIR/wildcard_imports.rs:115:30
65   |
66LL |         use self::{inner::*, inner2::*};
67   |                              ^^^^^^^^^ help: try: `inner2::inner_bar`
68
69error: usage of wildcard import
70  --> $DIR/wildcard_imports.rs:122:13
71   |
72LL |         use wildcard_imports_helper::*;
73   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternExportedEnum, ExternExportedStruct, extern_exported}`
74
75error: usage of wildcard import
76  --> $DIR/wildcard_imports.rs:151:9
77   |
78LL |     use crate::in_fn_test::*;
79   |         ^^^^^^^^^^^^^^^^^^^^ help: try: `crate::in_fn_test::{ExportedEnum, ExportedStruct, exported}`
80
81error: usage of wildcard import
82  --> $DIR/wildcard_imports.rs:160:9
83   |
84LL |     use crate:: in_fn_test::  * ;
85   |         ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `crate:: in_fn_test::exported`
86
87error: usage of wildcard import
88  --> $DIR/wildcard_imports.rs:161:9
89   |
90LL |       use crate:: fn_mod::
91   |  _________^
92LL | |         *;
93   | |_________^ help: try: `crate:: fn_mod::foo`
94
95error: usage of wildcard import
96  --> $DIR/wildcard_imports.rs:172:13
97   |
98LL |         use super::*;
99   |             ^^^^^^^^ help: try: `super::foofoo`
100
101error: usage of wildcard import
102  --> $DIR/wildcard_imports.rs:207:17
103   |
104LL |             use super::*;
105   |                 ^^^^^^^^ help: try: `super::insidefoo`
106
107error: usage of wildcard import
108  --> $DIR/wildcard_imports.rs:215:13
109   |
110LL |         use super_imports::*;
111   |             ^^^^^^^^^^^^^^^^ help: try: `super_imports::foofoo`
112
113error: usage of wildcard import
114  --> $DIR/wildcard_imports.rs:224:17
115   |
116LL |             use super::super::*;
117   |                 ^^^^^^^^^^^^^^^ help: try: `super::super::foofoo`
118
119error: usage of wildcard import
120  --> $DIR/wildcard_imports.rs:233:13
121   |
122LL |         use super::super::super_imports::*;
123   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `super::super::super_imports::foofoo`
124
125error: usage of wildcard import
126  --> $DIR/wildcard_imports.rs:241:13
127   |
128LL |         use super::*;
129   |             ^^^^^^^^ help: try: `super::foofoo`
130
131error: aborting due to 21 previous errors
132
133