blob: 74d3504d5beb2afb6fc615943dee10d2759b706d [file] [log] [blame]
pub mod a {
pub use a::b::c;
pub mod b {
pub mod c {
fn f(){}
fn g(){}
}
}
}