aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/macro-hiding/module.modulemap
diff options
context:
space:
mode:
Diffstat (limited to 'test/Modules/Inputs/macro-hiding/module.modulemap')
-rw-r--r--test/Modules/Inputs/macro-hiding/module.modulemap18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/Modules/Inputs/macro-hiding/module.modulemap b/test/Modules/Inputs/macro-hiding/module.modulemap
new file mode 100644
index 000000000000..20632d35aebc
--- /dev/null
+++ b/test/Modules/Inputs/macro-hiding/module.modulemap
@@ -0,0 +1,18 @@
+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 * }
+}
+module e {
+ module e1 { header "e1.h" export * }
+ module e2 { header "e2.h" export * }
+}