16 lines
170 B
Rust
16 lines
170 B
Rust
// Deeply indented modules.
|
|
|
|
mod foo {
|
|
mod bar {
|
|
mod baz {
|
|
fn foo() {
|
|
bar()
|
|
}
|
|
}
|
|
}
|
|
|
|
mod qux {
|
|
|
|
}
|
|
}
|