11 lines
130 B
Rust
11 lines
130 B
Rust
pub mod a {
|
|
pub use a::b::c;
|
|
|
|
pub mod b {
|
|
pub mod c {
|
|
fn f(){}
|
|
fn g(){}
|
|
}
|
|
}
|
|
}
|