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