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

14 lines
171 B
Rust
Raw Normal View History

2012-09-05 12:32:05 -07:00
use baz::zed;
use zed::bar;
mod baz {
#[legacy_exports];
mod zed {
#[legacy_exports];
2012-08-22 17:24:52 -07:00
fn bar() { debug!("bar2"); }
}
}
fn main() { bar(); }