@@ -37,93 +37,93 @@ LL | use wildcard_imports_helper::*;
3737 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}`
3838
3939error: usage of wildcard import
40- --> $DIR/wildcard_imports.rs:95 :13
40+ --> $DIR/wildcard_imports.rs:97 :13
4141 |
4242LL | use crate::fn_mod::*;
4343 | ^^^^^^^^^^^^^^^^ help: try: `crate::fn_mod::foo`
4444
4545error: usage of wildcard import
46- --> $DIR/wildcard_imports.rs:101 :75
46+ --> $DIR/wildcard_imports.rs:103 :75
4747 |
4848LL | use wildcard_imports_helper::inner::inner_for_self_import::{self, *};
4949 | ^ help: try: `inner_extern_foo`
5050
5151error: usage of wildcard import
52- --> $DIR/wildcard_imports.rs:102 :13
52+ --> $DIR/wildcard_imports.rs:104 :13
5353 |
5454LL | use wildcard_imports_helper::*;
5555 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternA, extern_foo}`
5656
5757error: usage of wildcard import
58- --> $DIR/wildcard_imports.rs:113 :20
58+ --> $DIR/wildcard_imports.rs:115 :20
5959 |
6060LL | use self::{inner::*, inner2::*};
6161 | ^^^^^^^^ help: try: `inner::inner_foo`
6262
6363error: usage of wildcard import
64- --> $DIR/wildcard_imports.rs:113 :30
64+ --> $DIR/wildcard_imports.rs:115 :30
6565 |
6666LL | use self::{inner::*, inner2::*};
6767 | ^^^^^^^^^ help: try: `inner2::inner_bar`
6868
6969error: usage of wildcard import
70- --> $DIR/wildcard_imports.rs:120 :13
70+ --> $DIR/wildcard_imports.rs:122 :13
7171 |
7272LL | use wildcard_imports_helper::*;
7373 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `wildcard_imports_helper::{ExternExportedEnum, ExternExportedStruct, extern_exported}`
7474
7575error: usage of wildcard import
76- --> $DIR/wildcard_imports.rs:149 :9
76+ --> $DIR/wildcard_imports.rs:151 :9
7777 |
7878LL | use crate::in_fn_test::*;
7979 | ^^^^^^^^^^^^^^^^^^^^ help: try: `crate::in_fn_test::{ExportedEnum, ExportedStruct, exported}`
8080
8181error: usage of wildcard import
82- --> $DIR/wildcard_imports.rs:158 :9
82+ --> $DIR/wildcard_imports.rs:160 :9
8383 |
8484LL | use crate:: in_fn_test:: * ;
8585 | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `crate:: in_fn_test::exported`
8686
8787error: usage of wildcard import
88- --> $DIR/wildcard_imports.rs:159 :9
88+ --> $DIR/wildcard_imports.rs:161 :9
8989 |
9090LL | use crate:: fn_mod::
9191 | _________^
9292LL | | *;
9393 | |_________^ help: try: `crate:: fn_mod::foo`
9494
9595error: usage of wildcard import
96- --> $DIR/wildcard_imports.rs:170 :13
96+ --> $DIR/wildcard_imports.rs:172 :13
9797 |
9898LL | use super::*;
9999 | ^^^^^^^^ help: try: `super::foofoo`
100100
101101error: usage of wildcard import
102- --> $DIR/wildcard_imports.rs:205 :17
102+ --> $DIR/wildcard_imports.rs:207 :17
103103 |
104104LL | use super::*;
105105 | ^^^^^^^^ help: try: `super::insidefoo`
106106
107107error: usage of wildcard import
108- --> $DIR/wildcard_imports.rs:213 :13
108+ --> $DIR/wildcard_imports.rs:215 :13
109109 |
110110LL | use super_imports::*;
111111 | ^^^^^^^^^^^^^^^^ help: try: `super_imports::foofoo`
112112
113113error: usage of wildcard import
114- --> $DIR/wildcard_imports.rs:222 :17
114+ --> $DIR/wildcard_imports.rs:224 :17
115115 |
116116LL | use super::super::*;
117117 | ^^^^^^^^^^^^^^^ help: try: `super::super::foofoo`
118118
119119error: usage of wildcard import
120- --> $DIR/wildcard_imports.rs:231 :13
120+ --> $DIR/wildcard_imports.rs:233 :13
121121 |
122122LL | use super::super::super_imports::*;
123123 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `super::super::super_imports::foofoo`
124124
125125error: usage of wildcard import
126- --> $DIR/wildcard_imports.rs:239 :13
126+ --> $DIR/wildcard_imports.rs:241 :13
127127 |
128128LL | use super::*;
129129 | ^^^^^^^^ help: try: `super::foofoo`
0 commit comments