Files
rust/tests/ui/modules/nested-modules-basic.rs

20 lines
323 B
Rust
Raw Normal View History

2025-06-12 20:49:48 +05:00
//! 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();
}