diff options
Diffstat (limited to 'test/Modules/Inputs/module-map-path-hash')
-rw-r--r-- | test/Modules/Inputs/module-map-path-hash/a.h | 2 | ||||
-rw-r--r-- | test/Modules/Inputs/module-map-path-hash/module.modulemap | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/test/Modules/Inputs/module-map-path-hash/a.h b/test/Modules/Inputs/module-map-path-hash/a.h new file mode 100644 index 0000000..f137354 --- /dev/null +++ b/test/Modules/Inputs/module-map-path-hash/a.h @@ -0,0 +1,2 @@ +#pragma once +int a = 42; diff --git a/test/Modules/Inputs/module-map-path-hash/module.modulemap b/test/Modules/Inputs/module-map-path-hash/module.modulemap new file mode 100644 index 0000000..514d745 --- /dev/null +++ b/test/Modules/Inputs/module-map-path-hash/module.modulemap @@ -0,0 +1,3 @@ +module a { + header "a.h" +} |