mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 03:33:59 +00:00
10 lines
119 B
Rust
10 lines
119 B
Rust
pub mod m {
|
|
pub struct S(u8);
|
|
|
|
pub mod n {
|
|
pub(in m) struct Z(pub(in m::n) u8);
|
|
}
|
|
}
|
|
|
|
pub use m::S;
|