blob: 304e612a0d91a1a19822a9a807a23f9ab9068fc0 [file] [log] [blame]
// Header for Objective-C ARC-related PCH tests
typedef const void *CFTypeRef;
typedef const struct __CFString *CFStringRef;
CFTypeRef CFCreateSomething();
CFStringRef CFCreateString();
CFTypeRef CFGetSomething();
CFStringRef CFGetString();
@interface NSString
@end
id CreateSomething();
NSString *CreateNSString();
#if __has_feature(objc_arc)
#define BRIDGE __bridge
#else
#define BRIDGE
#endif
typedef int array0[sizeof((BRIDGE id)CFCreateSomething())];
typedef int array1[sizeof((BRIDGE CFTypeRef)CreateSomething())];