Lines Matching full:strong
8 @property(retain) int p1; // expected-error {{property with 'retain (or strong)' attribute must be of object type}}
9 @property(strong) int s1; // expected-error {{property with 'retain (or strong)' attribute must be of object type}}
15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' are mutually exclusive}}
17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mutually exclusive}}
19 @property(assign, copy, strong) id s3_3; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-error {{property attributes 'assign' and 'strong' are mutually exclusive}}
23 @property(unsafe_unretained, strong) id s4_1; // expected-error {{property attributes 'unsafe_unretained' and 'strong' are mutually exclusive}}
25 @property(unsafe_unretained, copy, strong) id s4_3; // expected-error {{property attributes 'unsafe_unretained' and 'copy' are mutually exclusive}}, expected-error {{property attributes 'unsafe_unretained' and 'strong' are mutually exclusive}}
35 @property (retain) int PROP; // expected-error {{property with 'retain (or strong)' attribute must be of object type}}
36 @property (strong) int SPROP; // expected-error {{property with 'retain (or strong)' attribute must be of object type}}