1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -o - %s
3 typedef unsigned int uint32_t;
10 uint32_t nthOccurrence;
11 } OSPatternSpecificData;
14 + (NSNumber *)numberWithLong:(long)value;
17 @interface OSRecurrence {
18 OSPatternSpecificData _pts;
20 - (void)_setTypeSpecificInfoOnRecord;
23 @implementation OSRecurrence
24 - (void)_setTypeSpecificInfoOnRecord
26 [NSNumber numberWithLong:(_pts.dayOfMonth >= 31 ? -1 : _pts.dayOfMonth)];