xref: /llvm-project/clang/test/Modules/Inputs/SameHeader/module.modulemap (revision 0ad3182179170d47efa1790d0af43ea835fd2c4e)
1module X {
2  module A {
3    header "A.h"
4    export *
5  }
6  module B {
7    header "B.h"
8    export *
9  }
10  export *
11}
12