diff options
Diffstat (limited to 'test/Modules/Inputs/ModuleMapLocations/Both')
4 files changed, 7 insertions, 0 deletions
diff --git a/test/Modules/Inputs/ModuleMapLocations/Both/a.h b/test/Modules/Inputs/ModuleMapLocations/Both/a.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/Modules/Inputs/ModuleMapLocations/Both/a.h diff --git a/test/Modules/Inputs/ModuleMapLocations/Both/b.h b/test/Modules/Inputs/ModuleMapLocations/Both/b.h new file mode 100644 index 0000000..3abbd39 --- /dev/null +++ b/test/Modules/Inputs/ModuleMapLocations/Both/b.h @@ -0,0 +1 @@ +void wont_be_found1(void); diff --git a/test/Modules/Inputs/ModuleMapLocations/Both/module.map b/test/Modules/Inputs/ModuleMapLocations/Both/module.map new file mode 100644 index 0000000..bf5aaed --- /dev/null +++ b/test/Modules/Inputs/ModuleMapLocations/Both/module.map @@ -0,0 +1,3 @@ +module both { + header "b.h" +} diff --git a/test/Modules/Inputs/ModuleMapLocations/Both/module.modulemap b/test/Modules/Inputs/ModuleMapLocations/Both/module.modulemap new file mode 100644 index 0000000..0bfa096 --- /dev/null +++ b/test/Modules/Inputs/ModuleMapLocations/Both/module.modulemap @@ -0,0 +1,3 @@ +module both { + header "a.h" +} |