brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · b24c00c Raw
31 lines · plain
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.cpp2// RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-rw.cpp3// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw-modern.cpp4// RUN: %clang_cc1 -fsyntax-only -Werror -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-rw-modern.cpp5 6typedef unsigned long size_t;7typedef void * id;8void *sel_registerName(const char *);9 10@interface NSMutableString11- (NSMutableString *)string;12@end13 14@interface Z15@end16 17@implementation Z18 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@end30 31