mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 18:57:19 +00:00
20 lines
323 B
Rust
20 lines
323 B
Rust
//! Basic test for nested module functionality and path resolution
|
|
|
|
//@ run-pass
|
|
|
|
mod inner {
|
|
pub mod inner2 {
|
|
pub fn hello() {
|
|
println!("hello, modular world");
|
|
}
|
|
}
|
|
pub fn hello() {
|
|
inner2::hello();
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
inner::hello();
|
|
inner::inner2::hello();
|
|
}
|