]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/auxiliary/wildcard_imports_helper.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / auxiliary / wildcard_imports_helper.rs
CommitLineData
f20569fa
XL
1pub use crate::extern_exports::*;
2
3pub fn extern_foo() {}
4pub fn extern_bar() {}
5
6pub struct ExternA;
7
8pub mod inner {
9 pub mod inner_for_self_import {
10 pub fn inner_extern_foo() {}
11 pub fn inner_extern_bar() {}
12 }
13}
14
15mod extern_exports {
16 pub fn extern_exported() {}
17 pub struct ExternExportedStruct;
18 pub enum ExternExportedEnum {
19 A,
20 }
21}
22
23pub mod prelude {
24 pub mod v1 {
25 pub struct PreludeModAnywhere;
26 }
27}