OSDN Git Service

2011-10-18 Janus Weil <janus@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / objc-foreach-4.m
1 /* Test for valid objc objects used in a for-each statement. */
2 /* FIXME: Run this test with the GNU runtime as well.  */
3 /* { dg-do compile { target *-*-darwin* } } */
4 /* { dg-skip-if "" { *-*-* } { "-fgnu-runtime" } { "" } } */
5 /* { dg-skip-if "No NeXT fast enum. pre-Darwin9" { *-*-darwin[5-8]* } { "-fnext-runtime" } { "" } } */
6
7 #include <objc/objc-api.h>
8 #include <Foundation/Foundation.h>
9
10 #if defined (__NEXT_RUNTIME__) && defined (__LP64__)
11 /* Fudge the class reference until we implement the compiler-side 
12    const strings.  */
13 extern void *_NSConstantStringClassReference;
14 #endif
15
16 // gcc -o foo foo.m -framework Foundation
17
18 int main (int argc, char const* argv[]) {
19     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
20     NSArray * arr = [NSArray arrayWithObjects:@"A", @"B", @"C", nil];
21     for (NSString * foo in arr) { 
22       NSLog(@"foo is %@", foo);
23     }
24     [pool release];
25     return 0;
26 }