3816e57fd2
This should be a snapshot transition.
19 lines
135 B
Rust
19 lines
135 B
Rust
mod foo {
|
|
|
|
export bar;
|
|
|
|
mod bar {
|
|
fn y() {
|
|
x();
|
|
}
|
|
}
|
|
|
|
fn x() {
|
|
log "x";
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
foo::bar::y();
|
|
}
|