diff options
Diffstat (limited to 'clang/test/Modules')
-rw-r--r-- | clang/test/Modules/Inputs/point.h | 2 | ||||
-rw-r--r-- | clang/test/Modules/header-import.m | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/point.h b/clang/test/Modules/Inputs/point.h new file mode 100644 index 00000000000..eab23d5867a --- /dev/null +++ b/clang/test/Modules/Inputs/point.h @@ -0,0 +1,2 @@ +struct Point { int x, y; }; + diff --git a/clang/test/Modules/header-import.m b/clang/test/Modules/header-import.m new file mode 100644 index 00000000000..9996dc75c8b --- /dev/null +++ b/clang/test/Modules/header-import.m @@ -0,0 +1,7 @@ +// RUN: rm -rf %t +// RUN: %clang_cc1 -fmodule-cache-path %t -F %S/Inputs -I %S/Inputs -verify %s + +#import "point.h" +__import_module__ Module; +#import "point.h" + |