mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
245 B
Rust
18 lines
245 B
Rust
// check-pass
|
|
|
|
mod a {
|
|
pub mod b { pub struct Foo; }
|
|
|
|
pub mod c {
|
|
use super::b;
|
|
pub struct Bar(pub b::Foo);
|
|
}
|
|
|
|
pub use self::c::*;
|
|
}
|
|
|
|
fn main() {
|
|
let _ = a::c::Bar(a::b::Foo);
|
|
let _ = a::Bar(a::b::Foo);
|
|
}
|