blob: 386a458950b6f928ebcbe4a516a1a9f1588ddfc2 [file] [log] [blame]
#import <Foundation/Foundation.h>
int main (int argc, char const *argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSDate *date1 = [NSDate date];
CFGregorianDate cf_greg_date = CFAbsoluteTimeGetGregorianDate(CFDateGetAbsoluteTime((CFDateRef)date1), NULL);
CFRange cf_range = {4,4};
[pool release]; // Set breakpoint here.
return 0;
}