rust/tests/idem/mod-1.rs
Nick Cameron c00970f5e9 Indenting for modules
rustfmt now bootstraps!
2015-04-23 18:43:46 +12:00

15 lines
170 B
Rust

// Deeply indented modules.
mod foo {
mod bar {
mod baz {
fn foo() {
bar()
}
}
}
mod qux {
}
}