mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
10 lines
133 B
Rust
10 lines
133 B
Rust
pub mod m {
|
|
pub struct S(u8);
|
|
|
|
pub mod n {
|
|
pub(in crate::m) struct Z(pub(in crate::m::n) u8);
|
|
}
|
|
}
|
|
|
|
pub use m::S;
|