1// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp 2// RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-rw.cpp 3// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw-modern.cpp 4// RUN: %clang_cc1 -fsyntax-only -Werror -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-rw-modern.cpp 5 6typedef unsigned long size_t; 7typedef void * id; 8void *sel_registerName(const char *); 9 10@interface NSMutableString 11- (NSMutableString *)string; 12@end 13 14@interface Z 15@end 16 17@implementation Z 18 19- (void)x { 20 id numbers; 21 int i, numbersCount = 42; 22 __attribute__((__blocks__(byref))) int blockSum = 0; 23 void (^add)(id n, int idx, char *stop) = ^(id n, int idx, char *stop) { }; 24 [numbers enumerateObjectsUsingBlock:add]; 25 NSMutableString *forwardAppend = [NSMutableString string]; 26 __attribute__((__blocks__(byref))) NSMutableString *blockAppend = [NSMutableString string]; 27} 28 29@end 30 31