[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / property-3.m
blob8f2aa2d1ad7bd29056ef7d89d0bff84fb7a2d0cb
1 // RUN: %clang_cc1 -verify %s
3 @interface I 
5         id d1;
7 @property (readwrite, copy) id d1;
8 @property (readwrite, copy) id d2;
9 @end
11 @interface NOW : I
12 @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'}}
13 @property (readwrite, copy) I* d2;
14 @end
16 // rdar://13156292
17 typedef signed char BOOL;
19 @protocol EKProtocolCalendar
20 @property (nonatomic, readonly) BOOL allowReminders;
21 @property (atomic, readonly) BOOL allowNonatomicProperty; // expected-note {{property declared here}}
22 @end
24 @protocol EKProtocolMutableCalendar <EKProtocolCalendar>
25 @end
27 @interface EKCalendar
28 @end
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
35 __attribute__((objc_root_class))
36 @interface A
37 @property (nonatomic, readonly, getter=isAvailable) int available; // expected-note{{property declared here}}
38 @end
40 @interface A ()
41 @property (nonatomic, assign, getter=wasAvailable) int available; // expected-warning{{getter name mismatch between property redeclaration ('wasAvailable') and its original declaration ('isAvailable')}}
42 @end