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

11 lines
152 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
}
}
fn main(args: [istr]) { bar(); }