Lines Matching refs:property
4 // Superclass declares property. Subclass redeclares the same property.
6 // Superclass declares a property. Subclass declares a different property with the same name
8 // Superclass conforms to a protocol that declares a property. Subclass redeclares the
9 // same property. Do not @synthesize-by-default in the subclass. P3
10 // Superclass conforms to a protocol that declares a property. Subclass conforms to the
15 @property int P3;
16 @property int P4;
20 @property int IMP1;
24 @property int P1;
25 @property (copy) id P2;
29 @property int P1;
30 …@property (nonatomic, retain) id P2; // expected-warning {{property 'P2' 'copy' attribute does not…
31 …// expected-warning {{property 'P2' 'atomic' attribute does not match the property inherited from …
32 @property int P3;
33 @property int IMP2;