]> git.lizzy.rs Git - rust.git/blob - tests/target/mod-1.rs
implement framework for system tests
[rust.git] / tests / target / mod-1.rs
1 // Deeply indented modules.
2
3 mod foo {
4     mod bar {
5         mod baz {
6             fn foo() {
7                 bar()
8             }
9         }
10     }
11
12     mod qux {
13
14     }
15 }