@@ -16,7 +16,7 @@ use crate::fn_mod::foo;
1616//~^ wildcard_imports
1717use crate::mod_mod::inner_mod;
1818//~^ wildcard_imports
19- use crate::multi_fn_mod::{multi_bar, multi_foo , multi_inner_mod};
19+ use crate::multi_fn_mod::{multi_foo, multi_bar , multi_inner_mod};
2020//~^ wildcard_imports
2121#[macro_use]
2222use crate::struct_mod::{A, inner_struct_mod};
@@ -26,7 +26,7 @@ use crate::struct_mod::{A, inner_struct_mod};
2626use wildcard_imports_helper::inner::inner_for_self_import;
2727use wildcard_imports_helper::inner::inner_for_self_import::inner_extern_bar;
2828//~^ wildcard_imports
29- use wildcard_imports_helper::{ExternA, extern_foo };
29+ use wildcard_imports_helper::{extern_foo, ExternA };
3030//~^ wildcard_imports
3131
3232use std::io::prelude::*;
@@ -138,7 +138,7 @@ mod in_fn_test {
138138 fn test_extern() {
139139 use wildcard_imports_helper::inner::inner_for_self_import::{self, inner_extern_foo};
140140 //~^ wildcard_imports
141- use wildcard_imports_helper::{ExternA, extern_foo };
141+ use wildcard_imports_helper::{extern_foo, ExternA };
142142 //~^ wildcard_imports
143143
144144 inner_for_self_import::inner_extern_foo();
@@ -160,7 +160,7 @@ mod in_fn_test {
160160 }
161161
162162 fn test_extern_reexported() {
163- use wildcard_imports_helper::{ExternExportedEnum , ExternExportedStruct, extern_exported };
163+ use wildcard_imports_helper::{extern_exported , ExternExportedStruct, ExternExportedEnum };
164164 //~^ wildcard_imports
165165
166166 extern_exported();
@@ -190,7 +190,7 @@ mod in_fn_test {
190190}
191191
192192fn test_reexported() {
193- use crate::in_fn_test::{ExportedEnum , ExportedStruct, exported };
193+ use crate::in_fn_test::{exported , ExportedStruct, ExportedEnum };
194194 //~^ wildcard_imports
195195
196196 exported();
0 commit comments