[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Rewriter / rewrite-foreach-2.m
blobc363681255a3f1477cbe5f872ed5e986622a4d44
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
3 @protocol P @end
5 @interface MyList
6 @end
7     
8 @implementation MyList
9 - (unsigned int)countByEnumeratingWithState:  (struct __objcFastEnumerationState *)state objects:  (id *)items count:(unsigned int)stackcount
11         return 0;
13 @end
15 @interface MyList (BasicTest)
16 - (void)compilerTestAgainst;
17 @end
19 int LOOP(void);
20 int INNERLOOP(void);
21 void END_LOOP(void);
22 @implementation MyList (BasicTest)
23 - (void)compilerTestAgainst {
24   id el;
25         for (el in self) 
26           { LOOP(); 
27             for (id el1 in self) 
28                INNERLOOP();
30             END_LOOP();
31           }
33 @end