about summary refs log tree commit diff
path: root/tests/rustdoc-json/auxiliary/defines_and_reexports.rs
blob: 72434ef152f30b84627550643d5826734adfb519 (plain)
1
2
3
4
5
6
7
8
9
10
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};