blob: 3f82bcc3b7cd5e94960ecb5eee9f49969f4a3bb7 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -verify %s
Fariborz Jahaniandaa03112008-05-06 18:14:26 +00002
3@interface I
4{
5 id d1;
6}
7@property (readwrite, copy) id d1;
8@property (readwrite, copy) id d2;
9@end
10
11@interface NOW : I
Fariborz Jahanianb7b25652013-02-10 00:16:04 +000012@property (readonly) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts attribute 'readwrite' of property inherited from 'I'}} expected-warning {{'copy' attribute on property 'd1' does not match the property inherited from 'I'}}
Steve Naroff184671b2009-03-03 15:49:23 +000013@property (readwrite, copy) I* d2;
Fariborz Jahaniandaa03112008-05-06 18:14:26 +000014@end
Fariborz Jahanianb7b25652013-02-10 00:16:04 +000015
16// rdar://13156292
17typedef signed char BOOL;
18
19@protocol EKProtocolCalendar
20@property (nonatomic, readonly) BOOL allowReminders;
21@property (atomic, readonly) BOOL allowNonatomicProperty; // expected-note {{property declared here}}
22@end
23
24@protocol EKProtocolMutableCalendar <EKProtocolCalendar>
25@end
26
27@interface EKCalendar
28@end
29
30@interface EKCalendar () <EKProtocolMutableCalendar>
31@property (nonatomic, assign) BOOL allowReminders;
32@property (nonatomic, assign) BOOL allowNonatomicProperty; // expected-warning {{'atomic' attribute on property 'allowNonatomicProperty' does not match the property inherited from 'EKProtocolCalendar'}}
33@end