mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-11 16:42:02 +00:00
18 lines
282 B
Rust
18 lines
282 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() {}
|