diff options
Diffstat (limited to 'clang/test/Modules/Inputs/warning-mismatch/module.modulemap')
-rw-r--r-- | clang/test/Modules/Inputs/warning-mismatch/module.modulemap | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/warning-mismatch/module.modulemap b/clang/test/Modules/Inputs/warning-mismatch/module.modulemap new file mode 100644 index 00000000000..c22cde45978 --- /dev/null +++ b/clang/test/Modules/Inputs/warning-mismatch/module.modulemap @@ -0,0 +1,7 @@ +module System [system] { + header "System.h" +} + +module Mismatch { + header "Mismatch.h" +} |