diff options
Diffstat (limited to 'clang/test/Modules/Inputs/PR28752/Subdir1')
-rw-r--r-- | clang/test/Modules/Inputs/PR28752/Subdir1/b.h | 1 | ||||
-rw-r--r-- | clang/test/Modules/Inputs/PR28752/Subdir1/c.h | 0 | ||||
-rw-r--r-- | clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap | 5 |
3 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/PR28752/Subdir1/b.h b/clang/test/Modules/Inputs/PR28752/Subdir1/b.h new file mode 100644 index 00000000000..3b3a25f213f --- /dev/null +++ b/clang/test/Modules/Inputs/PR28752/Subdir1/b.h @@ -0,0 +1 @@ +#include <vector> diff --git a/clang/test/Modules/Inputs/PR28752/Subdir1/c.h b/clang/test/Modules/Inputs/PR28752/Subdir1/c.h new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/clang/test/Modules/Inputs/PR28752/Subdir1/c.h diff --git a/clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap b/clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap new file mode 100644 index 00000000000..8d3bfe996f5 --- /dev/null +++ b/clang/test/Modules/Inputs/PR28752/Subdir1/module.modulemap @@ -0,0 +1,5 @@ +module b { + module "b.h" { header "b.h" export * } + module "c.h" { header "c.h" export * } + export * +} |