blob: 6fcc0a79af03c01c5779ab64094be06e469fc919 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// -*- rust -*-
mod inner {
mod inner2 {
fn hello() { log "hello, modular world"; }
}
fn hello() { inner2::hello(); }
}
fn main() { inner::hello(); inner::inner2::hello(); }
|