12 lines
128 B
Rust
12 lines
128 B
Rust
mod foo {
|
|
|
|
export bar;
|
|
|
|
mod bar {
|
|
fn y() { x(); }
|
|
}
|
|
|
|
fn x() { log "x"; }
|
|
}
|
|
|
|
fn main() { foo::bar::y(); } |