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