9 lines
85 B
Rust
9 lines
85 B
Rust
mod foo {
|
|
fn bar(uint offset) {
|
|
}
|
|
}
|
|
|
|
fn main(vec[str] args) {
|
|
foo.bar(0u);
|
|
}
|