1 // RUN: %clang %target_itanium_abi_host_triple -O0 -g %s -c -o %t.o
2 // RUN: %clang %target_itanium_abi_host_triple %t.o -o %t.out -framework Foundation
3 // RUN: %test_debuginfo %s %t.out
5 // REQUIRES: system-darwin
13 #import <Foundation/Foundation.h>
15 int main (int argc, const char * argv[]) {
17 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
18 NSArray *things = [NSArray arrayWithObjects:@"one", @"two", @"three" , nil];
19 for (NSString *thing in things) {
23 things = [NSArray arrayWithObjects:@"aaa", @"bbb", @"ccc" , nil];
24 for (NSString *thing in things) {