rust/src/test/run-pass/import5.rs

15 lines
153 B
Rust

import foo::bar;
mod foo {
import zed::bar;
export bar;
mod zed {
fn bar() {
log "foo";
}
}
}
fn main(vec[str] args) {
bar();
}