@@ -37,93 +37,93 @@ 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:95 :13
40
+ --> $DIR/wildcard_imports.rs:97 :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:101 :75
46
+ --> $DIR/wildcard_imports.rs:103 :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:102 :13
52
+ --> $DIR/wildcard_imports.rs:104 :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:113 :20
58
+ --> $DIR/wildcard_imports.rs:115 :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:113 :30
64
+ --> $DIR/wildcard_imports.rs:115 :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:120 :13
70
+ --> $DIR/wildcard_imports.rs:122 :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:149 :9
76
+ --> $DIR/wildcard_imports.rs:151 :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:158 :9
82
+ --> $DIR/wildcard_imports.rs:160 :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:159 :9
88
+ --> $DIR/wildcard_imports.rs:161 :9
89
89
|
90
90
LL | use crate:: fn_mod::
91
91
| _________^
92
92
LL | | *;
93
93
| |_________^ help: try: `crate:: fn_mod::foo`
94
94
95
95
error: usage of wildcard import
96
- --> $DIR/wildcard_imports.rs:170 :13
96
+ --> $DIR/wildcard_imports.rs:172 :13
97
97
|
98
98
LL | use super::*;
99
99
| ^^^^^^^^ help: try: `super::foofoo`
100
100
101
101
error: usage of wildcard import
102
- --> $DIR/wildcard_imports.rs:205 :17
102
+ --> $DIR/wildcard_imports.rs:207 :17
103
103
|
104
104
LL | use super::*;
105
105
| ^^^^^^^^ help: try: `super::insidefoo`
106
106
107
107
error: usage of wildcard import
108
- --> $DIR/wildcard_imports.rs:213 :13
108
+ --> $DIR/wildcard_imports.rs:215 :13
109
109
|
110
110
LL | use super_imports::*;
111
111
| ^^^^^^^^^^^^^^^^ help: try: `super_imports::foofoo`
112
112
113
113
error: usage of wildcard import
114
- --> $DIR/wildcard_imports.rs:222 :17
114
+ --> $DIR/wildcard_imports.rs:224 :17
115
115
|
116
116
LL | use super::super::*;
117
117
| ^^^^^^^^^^^^^^^ help: try: `super::super::foofoo`
118
118
119
119
error: usage of wildcard import
120
- --> $DIR/wildcard_imports.rs:231 :13
120
+ --> $DIR/wildcard_imports.rs:233 :13
121
121
|
122
122
LL | use super::super::super_imports::*;
123
123
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `super::super::super_imports::foofoo`
124
124
125
125
error: usage of wildcard import
126
- --> $DIR/wildcard_imports.rs:239 :13
126
+ --> $DIR/wildcard_imports.rs:241 :13
127
127
|
128
128
LL | use super::*;
129
129
| ^^^^^^^^ help: try: `super::foofoo`
0 commit comments