[docs] Fix build-docs.sh
[llvm-project.git] / clang / test / Rewriter / rewrite-foreach-in-block.mm
blob85067017cd78b101b156c053c7a7760518c730b2
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 -std=gnu++98 -Wno-address-of-temporary -D"id=struct objc_object*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
3 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-modern-rw.cpp
4 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -Wno-address-of-temporary -D"id=struct objc_object*" -D"SEL=void*" -D"__declspec(X)=" %t-modern-rw.cpp
5 // rdar:// 9878420
7 typedef unsigned long size_t;
9 void objc_enumerationMutation(id);
10 void *sel_registerName(const char *);
11 typedef void (^CoreDAVCompletionBlock)(void);
13 @interface I
14 - (void)M;
15 - (id) ARR;
16 @property (readwrite, copy, nonatomic) CoreDAVCompletionBlock c;
17 @end
19 @implementation I
20 - (void)M {
21     I* ace;
22     self.c = ^() {
23           // Basic correctness check for the changes.
24           [ace ARR];
25           for (I *privilege in [ace ARR]) { }
26     };
27     self.c = ^() {
28           // Basic correctness test for the changes.
29           [ace ARR];
30     };
32 @end