mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
283 B
Rust
17 lines
283 B
Rust
//@ 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() {}
|