mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-11 07:21:51 +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 {
|
|
|
|
}
|
|
}
|