mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-23 05:03:47 +00:00
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(){}
|
|
}
|
|
}
|
|
}
|