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

8 lines
85 B
Rust

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