diff options
-rw-r--r-- | test/SemaCXX/carbon.cpp | 5 | ||||
-rw-r--r-- | test/SemaObjCXX/cocoa.mm | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test/SemaCXX/carbon.cpp b/test/SemaCXX/carbon.cpp new file mode 100644 index 0000000000..9c9c378040 --- /dev/null +++ b/test/SemaCXX/carbon.cpp @@ -0,0 +1,5 @@ +// RUN: clang %s -fsyntax-only -print-stats +#ifdef __APPLE__ +#include <Carbon/Carbon.h> +#endif + diff --git a/test/SemaObjCXX/cocoa.mm b/test/SemaObjCXX/cocoa.mm new file mode 100644 index 0000000000..7cb1b5295c --- /dev/null +++ b/test/SemaObjCXX/cocoa.mm @@ -0,0 +1,5 @@ +// RUN: clang %s -print-stats +#ifdef __APPLE__ +#include <Cocoa/Cocoa.h> +#endif + |