rust/src/test/run-pass/import5.rs
2011-09-02 22:11:42 -07:00

11 lines
151 B
Rust

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