rust/src/test/run-pass/inner-module.rs

18 lines
206 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
mod inner {
mod inner2 {
fn hello() {
log "hello, modular world";
}
}
fn hello() {
inner2::hello();
2010-06-23 23:03:09 -05:00
}
}
fn main() {
inner::hello();
inner::inner2::hello();
2010-06-23 23:03:09 -05:00
}