diff options
Diffstat (limited to 'clang/test/Modules/Inputs/macro-hiding/module.modulemap')
-rw-r--r-- | clang/test/Modules/Inputs/macro-hiding/module.modulemap | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/macro-hiding/module.modulemap b/clang/test/Modules/Inputs/macro-hiding/module.modulemap new file mode 100644 index 00000000000..14ca9af86ab --- /dev/null +++ b/clang/test/Modules/Inputs/macro-hiding/module.modulemap @@ -0,0 +1,14 @@ +module a { + module a1 { header "a1.h" export * } + module a2 { header "a2.h" export * } +} +module b { + module b1 { header "b1.h" export * } + module b2 { header "b2.h" export * } +} +module c { + module c1 { header "c1.h" export * } +} +module d { + module d1 { header "d1.h" export * } +} |