summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/nestedmod/mod.rs
blob: d04e49570a4f64b034dc130df6ce61df6ec6dfe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod mod2a;
mod mod2b;

mod mymod1 {
          use mod2a::{Foo,Bar};
mod mod3a;
}

#[path="mod2c.rs"]
mod mymod2;

mod submod2;