rust/src/test/run-pass/path.rs
2011-02-07 14:57:34 -05:00

9 lines
85 B
Rust

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