Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
rustdoc-json
/
auxiliary
/
defines_and_reexports.rs
blob: 72434ef152f30b84627550643d5826734adfb519 [
file
] [
log
] [
blame
]
pub
mod
m1
{
pub
struct
InPubMod
;
}
mod
m2
{
pub
struct
InPrivMod
;
}
pub
use
m1
::{
InPubMod
,
InPubMod
as
InPubMod2
};
pub
use
m2
::{
InPrivMod
,
InPrivMod
as
InPrivMod2
};