diff options
Diffstat (limited to 'test/Modules/Inputs')
-rw-r--r-- | test/Modules/Inputs/pch-with-module-name/A.h | 1 | ||||
-rw-r--r-- | test/Modules/Inputs/pch-with-module-name/C.h | 1 | ||||
-rw-r--r-- | test/Modules/Inputs/pch-with-module-name/C.m | 1 | ||||
-rw-r--r-- | test/Modules/Inputs/pch-with-module-name/D.h | 1 | ||||
-rw-r--r-- | test/Modules/Inputs/pch-with-module-name/module.modulemap | 9 | ||||
-rw-r--r-- | test/Modules/Inputs/pch-with-module-name/test.h | 1 |
6 files changed, 14 insertions, 0 deletions
diff --git a/test/Modules/Inputs/pch-with-module-name/A.h b/test/Modules/Inputs/pch-with-module-name/A.h new file mode 100644 index 000000000000..a73b3759d4ec --- /dev/null +++ b/test/Modules/Inputs/pch-with-module-name/A.h @@ -0,0 +1 @@ +// in pch diff --git a/test/Modules/Inputs/pch-with-module-name/C.h b/test/Modules/Inputs/pch-with-module-name/C.h new file mode 100644 index 000000000000..f681dd80974a --- /dev/null +++ b/test/Modules/Inputs/pch-with-module-name/C.h @@ -0,0 +1 @@ +#include "D.h" diff --git a/test/Modules/Inputs/pch-with-module-name/C.m b/test/Modules/Inputs/pch-with-module-name/C.m new file mode 100644 index 000000000000..90fe1bcc5851 --- /dev/null +++ b/test/Modules/Inputs/pch-with-module-name/C.m @@ -0,0 +1 @@ +//empty diff --git a/test/Modules/Inputs/pch-with-module-name/D.h b/test/Modules/Inputs/pch-with-module-name/D.h new file mode 100644 index 000000000000..90fe1bcc5851 --- /dev/null +++ b/test/Modules/Inputs/pch-with-module-name/D.h @@ -0,0 +1 @@ +//empty diff --git a/test/Modules/Inputs/pch-with-module-name/module.modulemap b/test/Modules/Inputs/pch-with-module-name/module.modulemap new file mode 100644 index 000000000000..379b0d48d589 --- /dev/null +++ b/test/Modules/Inputs/pch-with-module-name/module.modulemap @@ -0,0 +1,9 @@ +module CloudKit { + header "C.h" + export * +} + +module Contacts { + header "D.h" + export * +} diff --git a/test/Modules/Inputs/pch-with-module-name/test.h b/test/Modules/Inputs/pch-with-module-name/test.h new file mode 100644 index 000000000000..7a13ba4d72d4 --- /dev/null +++ b/test/Modules/Inputs/pch-with-module-name/test.h @@ -0,0 +1 @@ +#include "A.h" |