summaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/using-decl-redecl/module.modulemap
diff options
context:
space:
mode:
Diffstat (limited to 'test/Modules/Inputs/using-decl-redecl/module.modulemap')
-rw-r--r--test/Modules/Inputs/using-decl-redecl/module.modulemap5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Modules/Inputs/using-decl-redecl/module.modulemap b/test/Modules/Inputs/using-decl-redecl/module.modulemap
index bd6ea830c2d4..a2ebc1767645 100644
--- a/test/Modules/Inputs/using-decl-redecl/module.modulemap
+++ b/test/Modules/Inputs/using-decl-redecl/module.modulemap
@@ -1,3 +1,4 @@
module a { header "a.h" }
-module b { header "b.h" export * }
-module c { header "c.h" export * }
+module b { header "b.h" export a }
+module c { header "c.h" export a export b }
+module d { header "d.h" }