rust/tests/ui/privacy/auxiliary/pub_use_mods_xcrate.rs
2023-01-11 09:32:08 +00:00

11 lines
130 B
Rust

pub mod a {
pub use a::b::c;
pub mod b {
pub mod c {
fn f(){}
fn g(){}
}
}
}