]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/auxiliary/wildcard_imports_helper.rs
Rollup merge of #94057 - lcnr:simplify_type-uwu, r=nikomatsakis
[rust.git] / src / tools / clippy / tests / ui / auxiliary / wildcard_imports_helper.rs
1 pub use crate::extern_exports::*;
2
3 pub fn extern_foo() {}
4 pub fn extern_bar() {}
5
6 pub struct ExternA;
7
8 pub mod inner {
9     pub mod inner_for_self_import {
10         pub fn inner_extern_foo() {}
11         pub fn inner_extern_bar() {}
12     }
13 }
14
15 mod extern_exports {
16     pub fn extern_exported() {}
17     pub struct ExternExportedStruct;
18     pub enum ExternExportedEnum {
19         A,
20     }
21 }
22
23 pub mod prelude {
24     pub mod v1 {
25         pub struct PreludeModAnywhere;
26     }
27 }