@@ -38,96 +38,102 @@ LL | use wildcard_imports_helper::*;
3838 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}`
3939
4040error: usage of wildcard import
41- --> $DIR/wildcard_imports_2021.rs:91:13
41+ --> $DIR/wildcard_imports_2021.rs:89:13
42+ |
43+ LL | use exports_underscore_ish::*;
44+ | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `exports_underscore_ish::{_Deref, dummy}`
45+
46+ error: usage of wildcard import
47+ --> $DIR/wildcard_imports_2021.rs:119:13
4248 |
4349LL | use crate::fn_mod::*;
4450 | ^^^^^^^^^^^^^^^^ help: try: `crate::fn_mod::foo`
4551
4652error: usage of wildcard import
47- --> $DIR/wildcard_imports_2021.rs:97 :75
53+ --> $DIR/wildcard_imports_2021.rs:125 :75
4854 |
4955LL | use wildcard_imports_helper::inner::inner_for_self_import::{self, *};
5056 | ^ help: try: `inner_extern_foo`
5157
5258error: usage of wildcard import
53- --> $DIR/wildcard_imports_2021.rs:98 :13
59+ --> $DIR/wildcard_imports_2021.rs:126 :13
5460 |
5561LL | use wildcard_imports_helper::*;
5662 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}`
5763
5864error: usage of wildcard import
59- --> $DIR/wildcard_imports_2021.rs:110 :20
65+ --> $DIR/wildcard_imports_2021.rs:138 :20
6066 |
6167LL | use self::{inner::*, inner2::*};
6268 | ^^^^^^^^ help: try: `inner::inner_foo`
6369
6470error: usage of wildcard import
65- --> $DIR/wildcard_imports_2021.rs:110 :30
71+ --> $DIR/wildcard_imports_2021.rs:138 :30
6672 |
6773LL | use self::{inner::*, inner2::*};
6874 | ^^^^^^^^^ help: try: `inner2::inner_bar`
6975
7076error: usage of wildcard import
71- --> $DIR/wildcard_imports_2021.rs:117 :13
77+ --> $DIR/wildcard_imports_2021.rs:145 :13
7278 |
7379LL | use wildcard_imports_helper::*;
7480 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternExportedEnum, ExternExportedStruct, extern_exported}`
7581
7682error: usage of wildcard import
77- --> $DIR/wildcard_imports_2021.rs:146 :9
83+ --> $DIR/wildcard_imports_2021.rs:174 :9
7884 |
7985LL | use crate::in_fn_test::*;
8086 | ^^^^^^^^^^^^^^^^^^^^ help: try: `crate::in_fn_test::{ExportedEnum, ExportedStruct, exported}`
8187
8288error: usage of wildcard import
83- --> $DIR/wildcard_imports_2021.rs:155 :9
89+ --> $DIR/wildcard_imports_2021.rs:183 :9
8490 |
8591LL | use crate:: in_fn_test:: * ;
8692 | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `crate:: in_fn_test::exported`
8793
8894error: usage of wildcard import
89- --> $DIR/wildcard_imports_2021.rs:156 :9
95+ --> $DIR/wildcard_imports_2021.rs:184 :9
9096 |
9197LL | use crate:: fn_mod::
9298 | _________^
9399LL | | *;
94100 | |_________^ help: try: `crate:: fn_mod::foo`
95101
96102error: usage of wildcard import
97- --> $DIR/wildcard_imports_2021.rs:167 :13
103+ --> $DIR/wildcard_imports_2021.rs:195 :13
98104 |
99105LL | use super::*;
100106 | ^^^^^^^^ help: try: `super::foofoo`
101107
102108error: usage of wildcard import
103- --> $DIR/wildcard_imports_2021.rs:202 :17
109+ --> $DIR/wildcard_imports_2021.rs:230 :17
104110 |
105111LL | use super::*;
106112 | ^^^^^^^^ help: try: `super::insidefoo`
107113
108114error: usage of wildcard import
109- --> $DIR/wildcard_imports_2021.rs:210 :13
115+ --> $DIR/wildcard_imports_2021.rs:238 :13
110116 |
111117LL | use crate::super_imports::*;
112118 | ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `crate::super_imports::foofoo`
113119
114120error: usage of wildcard import
115- --> $DIR/wildcard_imports_2021.rs:219 :17
121+ --> $DIR/wildcard_imports_2021.rs:247 :17
116122 |
117123LL | use super::super::*;
118124 | ^^^^^^^^^^^^^^^ help: try: `super::super::foofoo`
119125
120126error: usage of wildcard import
121- --> $DIR/wildcard_imports_2021.rs:228 :13
127+ --> $DIR/wildcard_imports_2021.rs:256 :13
122128 |
123129LL | use super::super::super_imports::*;
124130 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `super::super::super_imports::foofoo`
125131
126132error: usage of wildcard import
127- --> $DIR/wildcard_imports_2021.rs:236 :13
133+ --> $DIR/wildcard_imports_2021.rs:264 :13
128134 |
129135LL | use super::*;
130136 | ^^^^^^^^ help: try: `super::foofoo`
131137
132- error: aborting due to 21 previous errors
138+ error: aborting due to 22 previous errors
133139
0 commit comments