|
1 | 1 | error: usage of wildcard import |
2 | | - --> $DIR/wildcard_imports.rs:10:5 |
| 2 | + --> $DIR/wildcard_imports.rs:11:5 |
3 | 3 | | |
4 | 4 | LL | use crate::fn_mod::*; |
5 | 5 | | ^^^^^^^^^^^^^^^^ help: try: `crate::fn_mod::foo` |
6 | 6 | | |
7 | 7 | = note: `-D clippy::wildcard-imports` implied by `-D warnings` |
8 | 8 |
|
9 | 9 | error: usage of wildcard import |
10 | | - --> $DIR/wildcard_imports.rs:11:5 |
| 10 | + --> $DIR/wildcard_imports.rs:12:5 |
11 | 11 | | |
12 | 12 | LL | use crate::mod_mod::*; |
13 | 13 | | ^^^^^^^^^^^^^^^^^ help: try: `crate::mod_mod::inner_mod` |
14 | 14 |
|
15 | 15 | error: usage of wildcard import |
16 | | - --> $DIR/wildcard_imports.rs:12:5 |
| 16 | + --> $DIR/wildcard_imports.rs:13:5 |
17 | 17 | | |
18 | 18 | LL | use crate::multi_fn_mod::*; |
19 | 19 | | ^^^^^^^^^^^^^^^^^^^^^^ help: try: `crate::multi_fn_mod::{multi_bar, multi_foo, multi_inner_mod}` |
20 | 20 |
|
21 | 21 | error: usage of wildcard import |
22 | | - --> $DIR/wildcard_imports.rs:14:5 |
| 22 | + --> $DIR/wildcard_imports.rs:15:5 |
23 | 23 | | |
24 | 24 | LL | use crate::struct_mod::*; |
25 | 25 | | ^^^^^^^^^^^^^^^^^^^^ help: try: `crate::struct_mod::{A, inner_struct_mod}` |
26 | 26 |
|
27 | 27 | error: usage of wildcard import |
28 | | - --> $DIR/wildcard_imports.rs:18:5 |
| 28 | + --> $DIR/wildcard_imports.rs:19:5 |
29 | 29 | | |
30 | 30 | LL | use wildcard_imports_helper::inner::inner_for_self_import::*; |
31 | 31 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::inner::inner_for_self_import::inner_extern_bar` |
32 | 32 |
|
33 | 33 | error: usage of wildcard import |
34 | | - --> $DIR/wildcard_imports.rs:19:5 |
| 34 | + --> $DIR/wildcard_imports.rs:20:5 |
35 | 35 | | |
36 | 36 | LL | use wildcard_imports_helper::*; |
37 | 37 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}` |
38 | 38 |
|
39 | 39 | error: usage of wildcard import |
40 | | - --> $DIR/wildcard_imports.rs:88:13 |
| 40 | + --> $DIR/wildcard_imports.rs:89:13 |
41 | 41 | | |
42 | 42 | LL | use crate::fn_mod::*; |
43 | 43 | | ^^^^^^^^^^^^^^^^ help: try: `crate::fn_mod::foo` |
44 | 44 |
|
45 | 45 | error: usage of wildcard import |
46 | | - --> $DIR/wildcard_imports.rs:94:75 |
| 46 | + --> $DIR/wildcard_imports.rs:95:75 |
47 | 47 | | |
48 | 48 | LL | use wildcard_imports_helper::inner::inner_for_self_import::{self, *}; |
49 | 49 | | ^ help: try: `inner_extern_foo` |
50 | 50 |
|
51 | 51 | error: usage of wildcard import |
52 | | - --> $DIR/wildcard_imports.rs:95:13 |
| 52 | + --> $DIR/wildcard_imports.rs:96:13 |
53 | 53 | | |
54 | 54 | LL | use wildcard_imports_helper::*; |
55 | 55 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}` |
56 | 56 |
|
57 | 57 | error: usage of wildcard import |
58 | | - --> $DIR/wildcard_imports.rs:106:20 |
| 58 | + --> $DIR/wildcard_imports.rs:107:20 |
59 | 59 | | |
60 | 60 | LL | use self::{inner::*, inner2::*}; |
61 | 61 | | ^^^^^^^^ help: try: `inner::inner_foo` |
62 | 62 |
|
63 | 63 | error: usage of wildcard import |
64 | | - --> $DIR/wildcard_imports.rs:106:30 |
| 64 | + --> $DIR/wildcard_imports.rs:107:30 |
65 | 65 | | |
66 | 66 | LL | use self::{inner::*, inner2::*}; |
67 | 67 | | ^^^^^^^^^ help: try: `inner2::inner_bar` |
68 | 68 |
|
69 | 69 | error: usage of wildcard import |
70 | | - --> $DIR/wildcard_imports.rs:113:13 |
| 70 | + --> $DIR/wildcard_imports.rs:114:13 |
71 | 71 | | |
72 | 72 | LL | use wildcard_imports_helper::*; |
73 | 73 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternExportedEnum, ExternExportedStruct, extern_exported}` |
74 | 74 |
|
75 | 75 | error: usage of wildcard import |
76 | | - --> $DIR/wildcard_imports.rs:142:9 |
| 76 | + --> $DIR/wildcard_imports.rs:143:9 |
77 | 77 | | |
78 | 78 | LL | use crate::in_fn_test::*; |
79 | 79 | | ^^^^^^^^^^^^^^^^^^^^ help: try: `crate::in_fn_test::{ExportedEnum, ExportedStruct, exported}` |
80 | 80 |
|
81 | 81 | error: usage of wildcard import |
82 | | - --> $DIR/wildcard_imports.rs:151:9 |
| 82 | + --> $DIR/wildcard_imports.rs:152:9 |
83 | 83 | | |
84 | 84 | LL | use crate:: in_fn_test:: * ; |
85 | 85 | | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `crate:: in_fn_test::exported` |
86 | 86 |
|
87 | 87 | error: usage of wildcard import |
88 | | - --> $DIR/wildcard_imports.rs:152:9 |
| 88 | + --> $DIR/wildcard_imports.rs:153:9 |
89 | 89 | | |
90 | 90 | LL | use crate:: fn_mod:: |
91 | 91 | | _________^ |
|
0 commit comments