blob: 21585b692e3f9bb77dcf3f95cd2028b3a0d86698 [file] [log] [blame]
Richard Smith57721ac2014-07-21 04:10:40 +00001module b {
2 module b2 { header "b2.h" export * }
3 module b1 { header "b1.h" export * }
4}
5module a {
6 module a1 { header "a1.h" export * }
7 module a2 { header "a2.h" export * }
8}
9module c {
10 module c1 { header "c1.h" export * }
11}
12module d {
13 module d1 { header "d1.h" export * }
14 module d2 { header "d2.h" export * }
15}