blob: ebf0477e8cb504ea801df49415ed1846efe2c253 [file] [log] [blame]
//@ check-pass
pub type T = ();
mod foo { pub use super::T; }
mod bar { pub use super::T; }
pub use foo::*;
pub use bar::*;
mod baz {
pub type T = ();
mod foo { pub use super::T as S; }
mod bar { pub use super::foo::S as T; }
pub use self::bar::*;
}
fn main() {}