14 lines · plain
1#import <Foundation/Foundation.h>2 3int main (int argc, char const *argv[])4{5 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];6 7 NSDate *date1 = [NSDate date];8 CFGregorianDate cf_greg_date = CFAbsoluteTimeGetGregorianDate(CFDateGetAbsoluteTime((CFDateRef)date1), NULL);9 CFRange cf_range = {4,4};10 11 [pool release]; // Set breakpoint here.12 return 0;13}14