• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#import <Foundation/Foundation.h>
2
3int main (int argc, const char * argv[])
4{
5
6    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
7
8    NSArray* foo = [NSArray arrayWithObjects:@1,@2,@3,@4,@5, nil];
9    NSDictionary *bar = @{@1 : @"one",@2 : @"two", @3 : @"three", @4 : @"four", @5 : @"five", @6 : @"six", @7 : @"seven"};
10    id x = foo;
11    x = bar; // Set break point at this line.
12
13    [pool drain];
14    return 0;
15}
16
17