xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/cxx-lookup/module.modulemap (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambucmodule A { header "a.h" export * }
2*0a6a1f1dSLionel Sambucmodule B { header "b.h" export * }
3*0a6a1f1dSLionel Sambucmodule C {
4*0a6a1f1dSLionel Sambuc  module C2 { header "c2.h" export * }
5*0a6a1f1dSLionel Sambuc  module C1 { header "c1.h" export * }
6*0a6a1f1dSLionel Sambuc}
7*0a6a1f1dSLionel Sambucmodule X { header "x.h" export * }
8*0a6a1f1dSLionel Sambucmodule Y { header "y.h" export * }
9