1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
module A { module One { header "A_one.h" } module Two { header "A_two.h" } } module B { module One { header "B_one.h" } module Two { header "B_two.h" } } module C { module One { header "C_one.h" export A.* } module Two { header "C_two.h" export * } }