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

9 lines
95 B
Rust

mod foo {
#[legacy_exports];
fn bar(offset: uint) { }
}
fn main() { foo::bar(0u); }