rust/tests/source/nestedmod/mod.rs
Gaëtan Cassiers 0e10329dc7 Separate modules and files listing of reformatting
As suggested in #141
Closes #156
2015-08-02 13:07:27 +02:00

13 lines
128 B
Rust

mod mod2a;
mod mod2b;
mod mymod1 {
use mod2a::{Foo,Bar};
mod mod3a;
}
#[path="mod2c.rs"]
mod mymod2;
mod submod2;