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

10 lines
153 B
Rust
Raw Normal View History

import foo::bar;
2011-01-13 18:02:54 -05:00
mod foo {
2011-07-27 14:19:39 +02:00
import zed::bar;
export bar;
mod zed {
fn bar() { log "foo"; }
2011-01-13 18:02:54 -05:00
}
}
2011-07-27 14:19:39 +02:00
fn main(args: vec[str]) { bar(); }