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

8 lines
84 B
Rust

mod foo {
fn bar(offset: uint) { }
}
fn main(args: ~[str]) { foo::bar(0u); }