1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -o - %s
4 typedef unsigned int uint32_t;
11 uint32_t nthOccurrence;
12 } OSPatternSpecificData;
15 + (NSNumber *)numberWithLong:(long)value;
18 @interface OSRecurrence {
19 OSPatternSpecificData _pts;
21 - (void)_setTypeSpecificInfoOnRecord;
24 @implementation OSRecurrence
25 - (void)_setTypeSpecificInfoOnRecord
27 [NSNumber numberWithLong:(_pts.dayOfMonth >= 31 ? -1 : _pts.dayOfMonth)];