xref: /llvm-project/clang/test/Modules/Inputs/rec-types/module.modulemap (revision 3466cebe94ba461b296bb1314e76118cc2823dfb)
1module a {
2  header "a.h"
3  // Hide content by not re-exporting module b.
4}
5
6module b {
7  header "b.h"
8  export *
9}
10