12 lines
89 B
Rust
12 lines
89 B
Rust
use mod a::b;
|
|
|
|
mod a {
|
|
mod b {
|
|
fn f() {}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
b::f();
|
|
}
|
|
|