diff options
Diffstat (limited to 'clang-tools-extra/test/modularize/Inputs/CompileError/module.modulemap')
-rw-r--r-- | clang-tools-extra/test/modularize/Inputs/CompileError/module.modulemap | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang-tools-extra/test/modularize/Inputs/CompileError/module.modulemap b/clang-tools-extra/test/modularize/Inputs/CompileError/module.modulemap new file mode 100644 index 00000000000..fbb8e7db4d1 --- /dev/null +++ b/clang-tools-extra/test/modularize/Inputs/CompileError/module.modulemap @@ -0,0 +1,10 @@ +// module.map
+
+module Level1A {
+ header "Level1A.h"
+ export *
+}
+module HasError {
+ header "HasError.h"
+ export *
+}
|