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

11 lines
151 B
Rust
Raw Normal View History

import foo::bar;
2011-01-13 17:02:54 -06:00
mod foo {
2011-07-27 07:19:39 -05:00
import zed::bar;
export bar;
mod zed {
fn bar() { log "foo"; }
2011-01-13 17:02:54 -06:00
}
}
2011-09-02 17:34:58 -05:00
fn main(args: [str]) { bar(); }