mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-15 10:07:30 +00:00
16 lines
170 B
Rust
16 lines
170 B
Rust
|
// Deeply indented modules.
|
||
|
|
||
|
mod foo {
|
||
|
mod bar {
|
||
|
mod baz {
|
||
|
fn foo() {
|
||
|
bar()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
mod qux {
|
||
|
|
||
|
}
|
||
|
}
|