[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Rewriter / rewrite-foreach-1.m
blobdcfa6e8a1afeef4a92298aeccf613fa48ffb30e5
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
2             
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 @implementation MyList (BasicTest)
21 - (void)compilerTestAgainst {
22   id el;
23         for (el in self) 
24           { LOOP(); }
25         for (id el1 in self) 
26           LOOP();
28         for (el in (self)) 
29           if (el)
30             LOOP(); 
32         for (el in ((self))) 
33           if (el)
34             LOOP(); 
36 @end