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