/* C++ handles type genericity with overloading in math.h. */
#ifndef __cplusplus
-#include <complex.h>
+#if __has_include(<complex.h>)
+# include <complex.h>
+#endif
#define _TG_ATTRSp __attribute__((__overloadable__))
#define _TG_ATTRS __attribute__((__overloadable__, __always_inline__))
// RUN: rm -rf %t
-// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t %s
+// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t %s -Xclang -verify
@import __compiler_builtins.float_constants;
char getCharMax() { return CHAR_MAX; }
-//size_t size; // expected-error{{unknown type name 'size_t'}}
+size_t size; // expected-error{{unknown type name 'size_t'}}