rust/src/test/run-pass/path.rs
2011-07-27 15:54:33 +02:00

7 lines
No EOL
85 B
Rust

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