brintos

brintos / llvm-project-archived public Read only

0
0
Text · 640 B · c363681 Raw
35 lines · plain
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -2 3@protocol P @end4 5@interface MyList6@end7    8@implementation MyList9- (unsigned int)countByEnumeratingWithState:  (struct __objcFastEnumerationState *)state objects:  (id *)items count:(unsigned int)stackcount10{11        return 0;12}13@end14 15@interface MyList (BasicTest)16- (void)compilerTestAgainst;17@end18 19int LOOP(void);20int INNERLOOP(void);21void 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();29 30	    END_LOOP();31	  }32}33@end34 35