aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/unavailable-local-visibility/module.modulemap
diff options
context:
space:
mode:
Diffstat (limited to 'test/Modules/Inputs/unavailable-local-visibility/module.modulemap')
-rw-r--r--test/Modules/Inputs/unavailable-local-visibility/module.modulemap9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Modules/Inputs/unavailable-local-visibility/module.modulemap b/test/Modules/Inputs/unavailable-local-visibility/module.modulemap
new file mode 100644
index 000000000000..8da3d3c1ab0e
--- /dev/null
+++ b/test/Modules/Inputs/unavailable-local-visibility/module.modulemap
@@ -0,0 +1,9 @@
+module M {
+ module a { header "a.h" export * }
+ module b { header "b.h" export * }
+ module doesnotexist { header "doesnotexist.h" }
+}
+module X {
+ header "x.h"
+ export *
+}