mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 20:00:43 +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;
|