Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:property

4   @property(readonly) int X; // expected-note {{property declared here}}
8 @property (copy) id ID;
15 @property float X; // expected-warning {{property type 'float' is incompatible with type 'int' inherited from 'P'}}
19 @property (retain) id ID; // expected-warning {{'copy' attribute on property 'ID' does not match the property inherited from 'P1'}}
24 @property(assign) int categoryProperty;
28 // because property is @dynamic.